/* Reset e tipografia básica */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root{
  --Primary-Color: #006C8F;
  --FontsizeH: 2rem;
}

*{
  font-family: Montserrat, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -webkit-user-select: none;
  user-select: none;
}

.hidden{
    opacity: 0;
    filter: blur(5px);
    transition: all ease-in-out .5s;
}

.show{
    opacity: 1;
    filter: blur(0px);
    transition: all ease-in-out .5s;
}

section{
  background-color: #f7f7f7;
}
section:nth-child(even){
  background-color: #fff;
}

body {
  color: #333;
  background-color: #fff;
  line-height: 1.6;
  height: 100dvh;
}
main{
  position: relative;
}
.whats{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  height: 70px;
  width: 70px;
  background-color: #25D366;
  padding: .7rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: solid 3.5px #fff;
  animation: float 2s infinite;
  cursor: pointer;
}

.whats img{
  color: #fff;
}

h1, h2, h3 {
  color: var(--Primary-Color); /* Azul-petróleo da logo */
}

h2{
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2vw + 1rem, 3rem);
}

a {
  text-decoration: none;
  color: inherit;
}

@keyframes float {
  0%,100%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(8px);
  }
  
}
/* Botão padrão */
.btn,
button {
  display: inline-block;
  padding: 0.9rem 1.7rem;
  background: linear-gradient(90deg, #fcb045, #fd1d1d, #833ab4); /* gradiente arco-íris */
  color: white;
  font-weight: bold;
  border-radius: 8px;
  margin-top: 20px;
  transition: transform 0.2s ease;
  cursor: pointer;
}
.btn:hover {
  transform: scale(1.05);
}

/* HERO SECTION */
.hero {
  position: relative;
  overflow: hidden;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}
.hero video{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(.6)
}
.hero .content{
  background-color: rgba(0, 0, 0, 0.176);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  width: 100%;
  position: relative;
  z-index: 1;
}
.logo {
  max-width: 180px;
  z-index: 2;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  z-index: 1;
  text-shadow: 0 0 5px #9e9e9e;
  color: #fff;
}
.hero p {
  font-size: 1.2rem;
   z-index: 2;
   color: #fff;
   font-weight: 500;
}
.hero a{
  animation: float 2s infinite;
}
/*Quem Somos*/
.quem-somos{
    padding: 2rem 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: linear-gradient(90deg, #fcb045, #fd1d1d, #833ab4);
}
.quem-somos::before{
  content: "";
  width: 800px;
  height: 50px;
  background: linear-gradient(90deg, #fcb045, #fd1d1d, #833ab4);
  z-index: 2;
  position: absolute;
  inset: 0px 0px 0px 0px;
  transform: translate(-250px, 220px) rotate(-45deg);
  filter: blur(50px);
}
.quem-somos::after{
  content: "";
  width: 100%;
  background:linear-gradient(
    90deg,#ffffff 40%, #ffffff66);
  height: 100%;
  inset: 0;
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.quem-somos .content{
  display: flex;
  max-width: 1250px;
  margin: 1rem;
  align-items: center;
  z-index: 3;
}
.quem-somos .content .content-text{
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  height: min-content;
}

.quem-somos .content .content-text p{
  font-weight: 600;
  font-size: clamp(1.3rem, 1.2vw + 0.5rem, 1.5rem);
}
.quem-somos .content .content-text h2{
  text-align: center;
  font-size: clamp(1.6rem, 2vw + 1rem, 3rem);
}

.quem-somos img{
  position: absolute;
  top: 0;
  right: 0%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.9;
}


.servicos {
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 2rem;
  position: relative;
}

.servicos::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 15px; /* espessura da "borda" */
  width: 100%;
  background: linear-gradient(90deg, #fcb045, #fd1d1d, #833ab4);
  filter: blur(50px);
}

.servicos .cards {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;

  z-index: 5;
  height: 100%;
  max-height: 100%;
  /* background-color: #25D366; */
}
.servicos .cards .row{
  justify-content: center !important;
  display: flex;
  width: 100%;
  gap: 1.3rem;
}

.servicos h2{
  position: relative;
}
.servicos h2::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, #fcb045, #fd1d1d, #833ab4);
  border-radius: 1rem;
  bottom: 0;
  left: 0;

}
.card {
  min-width: 240px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  cursor: pointer;
  flex: 1;
  z-index: 50;
  transition: all ease-in-out .8s;
  max-width: 800px;
}

.card:hover{
  transform: translateY(-2%);
}
.card-color {
  background: linear-gradient(90deg, #fcb045, #fd1d1d, #833ab4);
  background-size: 400% 400%;
  padding: 0.3rem;
  border-radius: 13px;
  overflow: hidden;
  display: flex;
  box-shadow: 5px 3px 7px 3px rgba(0, 0, 0, 0.349);
  animation-name: degradeRadial;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.cards > .card:nth-child(1) .card-color {
  animation-delay: 0s;
}
.cards > .card:nth-child(2) .card-color {
  animation-delay: 1s;
}
.cards > .card:nth-child(3) .card-color {
  animation-delay: 0.7s;
}
.cards > .card:nth-child(4) .card-color {
  animation-delay: 2s;
}
.cards > .card:nth-child(5) .card-color {
  animation-delay: 3s;
}

.card .card-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  max-height: 100%;
}

.card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all ease-in-out .2s;
}

.card:hover img{
  filter: brightness(1.3);
}

.card p {
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.5rem;
  text-wrap: nowrap;
}

/*Como funciona*/
.como-funciona {
  background-color: #000000;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  overflow: hidden; /* Impede que a imagem vaze para fora */
}

.como-funciona img,
.lembrancas .fundo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Faz a imagem esticar e cobrir sem distorcer */
  z-index: -1; /* Mantém a imagem atrás do conteúdo */
  opacity: 0.4; 
}

.como-funciona h2{
  background: linear-gradient(90deg, #fcb045, #fd1d1d, #d8a3fc);
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 400% 100%;
  -webkit-text-fill-color: transparent;
  animation: degrade 10s infinite;
}

.como-funciona p{
  color: #fff;
  font-weight: 600;
 font-size: clamp(1rem, calc(1.2vw + 0.5rem), 1.3rem);
}
.como-funciona::before,
.como-funciona::after{
  content: "";
  height: 5px;
  width: 100%;
  position: absolute;
  animation: degrade 2s linear infinite;
  z-index: 7;
}
.como-funciona::before{
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #fcb045, #fd1d1d, #833ab4);
  background-size: 400% 100%;
}
.como-funciona::after{
  bottom: 0;
  left: 0;
  background: linear-gradient(-90deg, #fcb045, #fd1d1d, #833ab4);
  background-size: 400% 100%;
  z-index: 1100;
}

@keyframes degrade {
  0%{
    background-position-x:0%;
  }
  100%{
    background-position-x:100%;
  }
  
}
@keyframes degradeRadial {
  0%{
    background-position-x:0%;
    background-position-y:0%;
  }
  100%{
    background-position-x:100%;
    background-position-y:100%;
  }
  
}
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.steps div {
  max-width: 200px;
}

.steps span {
  font-size: 2rem;
}

/* GALERIA */
.galeria {
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.fotos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.fotos1,.fotos2{

  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  width: 100%;
  z-index: 5;
  gap: 1rem;
}

.video-wraper {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  max-width: 450px;
  min-width: 280px;
}
.fotos .video-wraper video{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.fotos img{
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  max-width: 450px;
  min-width: 280px;
}

/* Estilo do botão de play */
.video-wraper svg {
  width: 50px; /* ✅ Tamanho menor */
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  animation: scale infinite ease-in-out 2s;
}
@keyframes scale {
  0%{
    transform: scale(1);
  }
  50%{transform: scale(1.3);}
  100%{transform: scale(1);}
}



.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  visibility: visible;
  opacity: 1;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.modal-content img,
.modal-content video {
  width: 100%;
  max-height: 90vh;
  border-radius: 10px;
}

.modal-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: white;
  color: black;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*Moldes*/
.lembrancas{
  background-color: #000000;
  padding: 1rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  overflow: hidden;
}
.lembrancas h2{
  color: #fff;
}
.lembrancas .modelos{
  max-width: 1360px;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 2rem;
  /* background-color: #25D366; */
  height: max-content;
}
.lembrancas .modelos .molde{

  position: relative;
  /* background-color: #006C8F; */
  width: 100%;
  aspect-ratio: 9/13;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.lembrancas .modelos .molde img{
  max-width: 75%;
  box-shadow: 3px 3px 5px 5px rgba(0, 0, 0, 0.245);
  max-height: 100%;
}
.lembrancas .modelos .back-image{
  rotate: -12deg;
  transform: scale(0.9);
}
.lembrancas .modelos .front-image{
  position: absolute;
  right: 2rem;
  rotate: 4deg;
}
.lembrancas .modelos .molde:nth-of-type(2) img {
  transform: scale(1.3) translateY(50%); 
}
.lembrancas .modelos .molde:nth-of-type(n+ 2) img{
  border: 2px solid white;
}

.lembrancas .molde h3{
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #fff;
}
/* DEPOIMENTOS */
.depoimentos {
  background-color: #f1f1f1;
  padding: 3rem 2rem;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.depoimentos::after{
  content: "";
  height: 200px;
  top: 50%;
  rotate: -35deg;
  filter: blur(200px);
  width: 200%;
  position: absolute;
    background: linear-gradient(90deg, #fcb045, #006C8F, #833ab4);
}

.feedbacks {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  z-index: 1;
}

.box {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 5px 3px 7px 3px rgba(0, 0, 0, 0.349);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    max-width: 400px;
    width: 100%;
    min-width: 250px;
    /* aspect-ratio: 4 / 3; */
    max-height: 540px;
    height: 540px;
}
.feedbacks .box-color:last-of-type .box p {
  font-size: 0.9rem;
}
.box1,
.box2{
  gap: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.box-color{
  background: linear-gradient(90deg, #fcb045, #fd1d1d, #833ab4);
  padding: 0.3rem;
  border-radius: 16px;
  background-size: 400% 400%;
  overflow: hidden;
  animation-name: degradeRadial;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  box-shadow: 5px 3px 7px 3px rgba(0, 0, 0, 0.349);
}
.feedbacks > .box-color:nth-child(1) {
  animation-delay: 0s;
}
.feedbacks > .box-color:nth-child(2)  {
  animation-delay: 1s;
}
.feedbacks > .box-color:nth-child(3)  {
  animation-delay: 0.7s;
}
.box .box_img{
  width: 30%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0px 5px 5px 2px rgba(0, 0, 0, 0.267);
  
}
.box .box_img img{
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.box p {
  font-style: italic;
  margin-bottom: 10px;
}
.box span {
  font-size: 0.9rem;
  color: #777;
}

.pacotes {
  padding: 3rem 2rem;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.planos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  max-width: 1450px;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 50dvh;
}

.plano {
  background: #fff;
  border: 2px solid #dedede;
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.3s ease;
  justify-content: space-around;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 450px;
  min-width: 150px;
  height: 100%;
}

.plano p{
  font-weight: 700;
}

.plano:hover {
  transform: translateY(-5px);
}

.plano h3 {
  font-size: 1.3rem;
  color: #006C8F;
  margin-bottom: 10px;
}
.plano ul{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:start;
  width: 50%;
  /* background-color: #006C8F; */
}
.plano .video{
  margin-top: 1rem;
}
.preco {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fd1d1d;
  margin-top: 10px;
}

.plano button {
  border: none;
  cursor: pointer;
  transition: all ease-in-out .3s;
  width: 50%;
  align-self: center;
}

.plano button:hover{
  transform: scale(1.15);
}

/* RODAPÉ */
footer{
    background: linear-gradient(to right, #fcb045, #fd1d1d, #833ab4);
    color: #fff;
    padding: 2rem 1rem;
    width: 100%;
    height: min-content;
    gap:1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}
footer .direitos{
  text-align: center;
}

.footer_content{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 100%;
    gap: 1rem;
    max-width: 1360px;
}
.footer_content > :nth-child(n){
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
    max-height: 100%;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    gap: 1rem;
}
.footer_content .footer_contato{
    gap: 2rem;
}
.footer_content .footer_contato .footer_redes,
.footer_content .footer_contato .footer_numero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.footer_content > :nth-child(n) > .title,
.footer_content > .footer_contato > .footer_numero > .title,
.footer_content > .footer_contato > .footer_redes > .title{
    font-size: var(--colorPrimaryText);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer_content > :nth-child(n) > .title::after,
.footer_content > :nth-child(n) > .title::before,
.footer_content > .footer_contato > .footer_numero > .title::after,
.footer_content > .footer_contato > .footer_redes > .title::after,
.footer_content > .footer_contato > .footer_numero > .title::before,
.footer_content > .footer_contato > .footer_redes > .title::before{
    color: var(--colorPrimary);
    font-size: 1.2rem;
    font-weight: bold;
}
.footer_content > :nth-child(n) > .title::after,
.footer_content > .footer_contato > .footer_numero > .title::after,
.footer_content > .footer_contato > .footer_redes > .title::after{
    content: "-";
}
.footer_content > :nth-child(n) > .title::before,
.footer_content > .footer_contato > .footer_numero > .title::before,
.footer_content > .footer_contato > .footer_redes > .title::before{
    content: "-";
}

.footer_content > :nth-child(n) > .text a,
.footer_content .footer_contato .footer_numero .text > a{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: .6rem;
}
.footer_content > :nth-child(n) > .text a >i,
.footer_content .footer_contato .footer_numero .text a > i{
    font-size: 1.3rem;
}
.footer_content .footer_map > iframe{
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 1/1;
}
.footer_content .footer_contato.socialIcons{
   display: flex;
   gap: 1rem;
}
.footer_content .footer_contato.socialIcons > a{
    background: #ffffff38;
    backdrop-filter: blur(10px);
    border: #fff 1px solid;
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 2.3rem;
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
}
.footer_content .footer_contato.socialIcons > a >i{
    font-size: 1.3rem;
}



/* Responsivo*/

@media (max-width: 1360px){
  .quem-somos::after{
    background: linear-gradient(45deg, #ffffff 45%, transparent);
  }

}

@media (max-width: 1260px){
  .fotos1, .fotos2{
    flex-wrap: wrap;
  }
}
@media (max-width: 1080px) {
  
  .quem-somos .content{
    align-items: center;
    justify-content: center;
  }
  .quem-somos .content .content-text {
    width: 80%;
  }
  .quem-somos .content .content-text * {
    text-align: center;
  }

  .quem-somos::after {
    background: linear-gradient(0deg, #ffffff 20%, #ffffff6b );
  }
  
    .quem-somos img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0.9;
  }
  .planos{
    height: min-content;
  }
}


@media (max-width: 840px) {

  .quem-somos .content .content-text {
    width: 100%;
  }
    .quem-somos img{
    object-position: center;
    right: -10%;
  }

}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .como-funciona{
    height: min-content;
  }

  footer .footer_content{
    display: flex;
    flex-direction: column;
  }

  footer .footer_content .footer_loca.text{
    max-width: 80%;
  }

    .quem-somos img{
    object-position: center;
    right: auto;
  }
  .quem-somos::after {
    background: linear-gradient(0deg, #ffffff 20%, #ffffff6b );
  }
  .lembrancas .modelos{
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 1rem;
  }
  .lembrancas .modelos .molde{
    max-height: 330px;

  }
  .lembrancas .modelos .molde:not(:nth-child(2)){
    gap: 1rem;
  }
  .lembrancas .modelos .molde:nth-child(2) h3{
    transform: translateY(-100%);
  }
  .lembrancas .modelos .molde:nth-of-type(2) img{
    transform: scale(0.6) translateY(0);
    max-width: none;
  }
  .lembrancas .modelos .front-image {
    right: auto;
  }
  .servicos .cards .row{
    flex-direction: column;
  }


}
@media (max-width: 560px) {
    .quem-somos{
    height: min-content;
  }
  .quem-somos .content .content-text p{
    font-weight: 600;
    font-size: clamp(1.0rem, 1.2vw + 0.5rem, 1.5rem);
  }
   footer .footer_content .footer_loca.text{
    max-width: 90%;
  }

  .quem-somos{
    flex-direction: column;
    padding: 2rem 0rem 0rem 0rem;
  }
  .quem-somos img{
  position: static;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.9;
}
  .quem-somos::after {
    background: none;
  }
}

@media (max-width: 497px){
  .box{
    max-height: none;
    height: min-content;
  }
  .box .box_img{
    width: 50%;
  }
  .box p{
    font-size: 0.8rem;
  }
  .planos ul{
  width: 70%;
}
.footer_loca span{
  text-align: center;
}
}
@media (max-width: 395px ){
    .box p, .box span {
    margin: 0;
    font-size: 0.8rem;
  }
    .lembrancas .modelos .molde:nth-of-type(2) img{
    transform: scale(0.5) translateY(0);
  }
    .lembrancas .modelos{
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
  }
.lembrancas .modelos .molde:nth-child(3) {
  margin-top: 2rem;
}
.plano button{
  width: 80%;
}

} 