*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"DM Sans", sans-serif;
  color:#333;
  background:#fff;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

.container{
  width:min(90%, 1100px);
  margin:auto;
}

section{
  padding:80px 0;
}

section h2{
  text-align:center;
  margin-bottom:40px;
  font-size:clamp(28px, 4vw, 34px);
  color:#2f5d50;
  line-height:1.2;
}

/* HEADER */
.topo{
  background:white;
  border-bottom:1px solid #eee;
  padding:18px 0;
  position:sticky;
  top:0;
  z-index:999;
}

.topo-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.logo{
  height:70px;
  width:auto;
}

.menu{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  justify-content:center;
}

.menu a{
  color:#ff3f7a;
  font-weight:700;
  transition:0.3s;
}

.menu a:hover{
  color:#a54bff;
  transform:translateY(-2px);
}

.btn-whatsapp{
  background:linear-gradient(90deg,#ff3f7a,#a54bff);
  padding:12px 20px;
  border-radius:30px;
  color:white;
  font-weight:700;
  box-shadow:0 8px 22px rgba(255,63,122,0.25);
  transition:0.3s;
  text-align:center;
  white-space:nowrap;
}

.btn-whatsapp:hover{
  transform:translateY(-3px);
}

/* HERO */
.hero{
  padding:100px 0;
  background:#f8fffb;
}

.hero-conteudo{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:40px;
  align-items:center;
}

.hero-texto h1{
  font-size:clamp(30px, 5vw, 42px);
  margin-bottom:20px;
  color:#2f5d50;
  line-height:1.15;
}

.hero-texto p{
  font-size:18px;
  line-height:1.7;
}

.tag{
  display:inline-block;
  background:#ffe4ea;
  padding:6px 14px;
  border-radius:20px;
  font-size:14px;
  margin-bottom:16px;
  color:#ff3f7a;
  font-weight:700;
}

.btn-principal{
  display:inline-block;
  margin-top:20px;
  background:linear-gradient(90deg,#ff3f7a,#a54bff);
  padding:14px 28px;
  border-radius:30px;
  color:white;
  font-weight:700;
  transition:0.3s;
  text-align:center;
}

.btn-principal:hover{
  transform:translateY(-3px);
}

.hero-placeholder{
  width:100%;
}

.hero-placeholder img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:20px;
  background:white;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* BENEFÍCIOS */
.grid-cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
}

.card{
  background:white;
  padding:25px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  text-align:center;
  transition:0.3s;
  min-height:110px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.card:hover{
  transform:translateY(-6px);
}

/* TIRZEPATIDA */
.tirzepatida{
  background:#fff7fa;
}

.tirzepatida-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:40px;
  align-items:center;
}

.tirzepatida-grid p{
  line-height:1.7;
  margin-bottom:16px;
}

.produto-placeholder img{
  min-height:240px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:20px;
  background:white;
  text-align:center;
}

/* DEPOIMENTOS E RESULTADOS */
.grid-depoimentos,
.grid-resultados{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
}

.grid-resultados img,
.grid-depoimentos img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:16px;
  transition:0.3s;
  box-shadow:0 8px 24px rgba(0,0,0,0.08);
}

.grid-resultados img:hover,
.grid-depoimentos img:hover{
  transform:translateY(-4px) scale(1.02);
}

.resultado-cta{
  text-align:center;
  margin-top:30px;
}

/* FUNDADORA */
.sobre-fundadora{
  padding:90px 0;
  background:#fff;
}

.fundadora-grid{
  display:grid;
  grid-template-columns:minmax(280px, 0.9fr) minmax(0, 1.2fr);
  gap:60px;
  align-items:center;
}

.fundadora-imagem{
  display:flex;
  justify-content:center;
}

.foto-fundadora-box{
  width:100%;
  max-width:360px;
}

.foto-fundadora{
  width:100%;
  height:460px;
  object-fit:cover;
  border-radius:24px;
  box-shadow:0 12px 30px rgba(0,0,0,0.10);
  background:#fafafa;
}

.fundadora-texto h2{
  font-size:clamp(28px, 4vw, 36px);
  margin-bottom:16px;
  color:#2f5d50;
  text-align:left;
}

.fundadora-destaque{
  font-size:18px;
  font-weight:600;
  color:#ff3f7a;
  margin-bottom:18px;
}

.fundadora-texto p{
  margin-bottom:16px;
  line-height:1.7;
  font-size:16px;
}

/* CONTATO */
.formulario{
  max-width:420px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:12px;
}

input{
  padding:14px 16px;
  border-radius:10px;
  border:1px solid #ccc;
  font-family:"DM Sans", sans-serif;
  font-size:16px;
  width:100%;
}

button{
  padding:14px;
  border:none;
  border-radius:30px;
  background:linear-gradient(90deg,#ff3f7a,#a54bff);
  color:white;
  font-weight:700;
  font-family:"DM Sans", sans-serif;
  cursor:pointer;
  transition:0.3s;
  font-size:16px;
}

button:hover{
  transform:translateY(-3px);
  filter:brightness(1.05);
}

/* RODAPÉ */
.rodape{
  background:#1f2a33;
  color:#bfc9d4;
  padding:70px 0 30px 0;
}

.rodape-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:40px;
}

.rodape h3,
.rodape h4{
  color:white;
  margin-bottom:14px;
}

.rodape p{
  line-height:1.7;
  margin-bottom:12px;
}

.rodape ul{
  list-style:none;
}

.rodape ul li{
  margin-bottom:10px;
}

.rodape ul a{
  color:#cfd8e3;
  transition:0.3s;
}

.rodape ul a:hover{
  color:#ff6f97;
}

.rodape a{
  color:#ff6f97;
  font-weight:600;
}

.instagram-link{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:10px;
  flex-wrap:wrap;
}

.instagram-link svg{
  color:#ff3f7a;
  flex-shrink:0;
}

.instagram-link a{
  color:#ff6f97;
  font-weight:600;
  transition:0.3s;
}

.instagram-link a:hover{
  color:#ffffff;
}

.rodape-bottom{
  margin-top:40px;
  text-align:center;
  border-top:1px solid #2c3842;
  padding-top:20px;
}

.rodape-dev strong{
  color:white;
}

/* BOTÃO FLUTUANTE */
.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  width:64px;
  height:64px;
  border-radius:50%;
  background:#25d366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 30px rgba(37,211,102,0.35);
  z-index:1000;
  animation:whatsappFloat 2.5s ease-in-out infinite;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover{
  transform:scale(1.08);
  box-shadow:0 16px 34px rgba(37,211,102,0.45);
}

.whatsapp-float svg{
  width:32px;
  height:32px;
  fill:white;
}

@keyframes whatsappFloat{
  0%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-6px);
  }
  100%{
    transform:translateY(0);
  }
}

/* TABLET */
@media (max-width: 992px){
  .topo-flex{
    justify-content:center;
    text-align:center;
  }

  .hero-conteudo,
  .tirzepatida-grid,
  .fundadora-grid,
  .rodape-grid{
    grid-template-columns:1fr;
  }

  .grid-cards,
  .grid-depoimentos,
  .grid-resultados{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .hero{
    padding:80px 0;
  }

  .hero-texto{
    text-align:center;
  }

  .hero-texto .btn-principal{
    margin-inline:auto;
  }

  .fundadora-texto{
    text-align:center;
  }

  .fundadora-texto h2{
    text-align:center;
  }

  .foto-fundadora{
    height:400px;
  }
}

/* MOBILE */
@media (max-width: 768px){
  section{
    padding:65px 0;
  }

  .topo{
    padding:14px 0;
  }

  .topo-flex{
    flex-direction:column;
    gap:16px;
  }

  .logo{
    height:58px;
  }

  .menu{
    gap:12px 16px;
  }

  .menu a{
    font-size:15px;
  }

  .btn-whatsapp{
    width:100%;
    max-width:260px;
  }

  .hero{
    padding:60px 0;
  }

  .hero-conteudo{
    gap:28px;
  }

  .hero-texto p{
    font-size:16px;
  }

  .hero-placeholder img{
    height:320px;
  }

  .grid-cards,
  .grid-depoimentos,
  .grid-resultados{
    grid-template-columns:1fr;
  }

  .card{
    min-height:auto;
    padding:22px 18px;
  }

  .produto-placeholder{
    min-height:240px;
  }

  .foto-fundadora{
    height: 420px;
  }

  .formulario{
    max-width:100%;
  }

  .rodape{
    padding:55px 0 25px 0;
  }

  .rodape-grid{
    gap:28px;
    text-align:center;
  }

  .instagram-link{
    justify-content:center;
  }

  .whatsapp-float{
    width:58px;
    height:58px;
    right:16px;
    bottom:16px;
  }

  .whatsapp-float svg{
    width:28px;
    height:28px;
  }
}

/* MOBILE PEQUENO */
@media (max-width: 480px){
  .container{
    width:min(92%, 1100px);
  }

  .hero-texto h1{
    font-size:28px;
  }

  .btn-principal,
  .btn-whatsapp,
  button{
    width:100%;
  }

  .hero-placeholder img{
    height:260px;
  }

 /*  .foto-fundadora{
    height:300px;
  } */


  input{
    font-size:15px;
  }
}