.noticia {
    position: relative;
    width: 100%;
    height: 230px;
    background-color: #f2f2f2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1000px;
    box-shadow: 0 0 0 5px #ffffff80;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backface-visibility: hidden;
    will-change: transform;
  }

  .noticia .data {
	position: absolute;
	right: 0;
	bottom: 0;
	background-color: #b6d635;
    border-top-left-radius: 12px;
    color: #FFF;
	font-size: 14px;
	line-height: 14px;
	padding: 10px;
	z-index: 2;
}
  
  .noticia img {
    width: 100%;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    object-fit: cover;
    object-position: center;
  }
  
  .noticia:hover {
    transform: scale3d(1.05, 1.05, 1);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
  }
  
  .noticia-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f2f2f2;
    transform: rotateX(-90deg);
    transform-origin: bottom;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .noticia:hover .noticia-content {
    transform: rotateX(0deg);
  }
  
  .noticia-titulo {
    margin: 0;
    font-size: 22px;
    color: #333;
    font-weight: 700;
    line-height: 28px;
  }
  
  .noticia-descricao {
    margin: 10px 0 0;
    font-size: 14px;
    color: #777;
    line-height: 1.4;
  }


button.saiba-mais {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}
   
button.saiba-mais {
    width: 12rem;
    height: auto;
}
   
button.saiba-mais .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #ffffff;
    border-radius: 1.625rem;
}
   
button.saiba-mais .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}
   
button.saiba-mais .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}
   
button.saiba-mais .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #000000;
    border-right: 0.125rem solid #000000;
    transform: rotate(45deg);
}
   
button.saiba-mais .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}
   
button:hover .circle {
    width: 100%;
}
   
button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}
   
button:hover .button-text {
    color: #000000;
}

.btn-padrao-2 {
    padding: 10px 15px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #0b8b62;
    transition: all 1000ms;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    background-color: #FFF;
    outline: 1px solid rgb(200, 200, 200, .5);
}
  
.btn-padrao-2:hover {
    color: #ffffff;
    transform: scale(1.1);
    outline: 1px solid #0b8b62;
    box-shadow: 4px 5px 17px -4px #0b8b62;
}
  
.btn-padrao-2::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #0b8b62;
    transform: skewX(45deg);
    z-index: -1;
    transition: width 1000ms;
}
  
.btn-padrao-2:hover::before {
    width: 250%;
}