:root {
  --azul: #6E97C8;
  --azul-claro: #EEF5FD;
  --azul-escuro: #24436B;
  --rosa: #E8A5C2;
  --rosa-claro: #FFF5F8;
  --texto: #48536A;
  --branco: #FFFFFF;
  --shadow: 0 18px 40px rgba(70,105,150,.14);
  --radius: 28px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #FCFDFE;
  color: var(--texto);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  height: 95px;
  width: auto;
}

.btn-header,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--azul-escuro);
  color: white;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 900;
  transition: .3s ease;
  box-shadow: 0 16px 34px rgba(36,67,107,.20);
}

.btn-header:hover,
.btn-primary:hover {
  background: var(--rosa);
  transform: translateY(-4px);
}

/* HERO */

.hero {
  background: linear-gradient(135deg, var(--azul-claro), #ffffff 45%, var(--rosa-claro));
  padding: 80px 0 90px;
  overflow: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero-text {
  max-width: 650px;
}

.tag {
  display: inline-block;
  background: white;
  color: var(--rosa);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--azul-escuro);
  font-size: 3.6rem;
  line-height: 1.08;
  margin-bottom: 24px;
  font-weight: 900;
}

.hero p {
  font-size: 1.12rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-info span {
  background: white;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.preco-hero {
  margin-bottom: 30px;
}

.preco-hero small {
  display: block;
  color: #777;
  font-size: 1rem;
  text-decoration: line-through;
}

.preco-hero strong {
  display: block;
  color: var(--rosa);
  font-size: 2.5rem;
  font-weight: 900;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 720px;
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
}/* SEÇÕES GERAIS */

section {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 55px;
}

.section-title span {
  color: var(--rosa);
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: 2px;
}

.section-title h2 {
  color: var(--azul-escuro);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 14px;
  line-height: 1.15;
}

.section-title p {
  margin-top: 18px;
  font-size: 1.1rem;
}

/* DOR */

.dor {
  background: white;
}

.dor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.dor-card {
  background: linear-gradient(180deg, #ffffff, #fff5f8);
  padding: 30px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  transition: .3s;
  display: flex;
  align-items: center;
  gap: 22px;
}

.dor-card:hover {
  transform: translateY(-6px);
}

.dor-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #ffe8f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dor-icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.dor-card p {
  color: var(--azul-escuro);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.4;
}/* ==================================
   CONTEÚDO
================================== */

.conteudo{
    background:linear-gradient(
        135deg,
        var(--azul-claro),
        #ffffff 45%,
        var(--rosa-claro)
    );
}

.modulos-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.modulo-card{

    background:white;

    padding:38px;

    border-radius:30px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.modulo-card:hover{

    transform:translateY(-8px);

}

.modulo-card h3{

    color:var(--rosa);

    font-size:.95rem;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:14px;

}

.modulo-card h4{

    color:var(--azul-escuro);

    font-size:1.6rem;

    margin-bottom:22px;

    line-height:1.25;

}

.modulo-card ul{

    list-style:none;

}

.modulo-card li{

    margin-bottom:14px;

    padding-left:24px;

    position:relative;

    line-height:1.55;

}

.modulo-card li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--azul);

    font-weight:900;

}

.destaque-modulo{

    border:3px solid var(--rosa);

    background:linear-gradient(
        180deg,
        #ffffff,
        var(--rosa-claro)
    );

}

/* ==================================
   INFORMAÇÕES
================================== */

.informacoes{

    background:white;

}

.info-box{

    max-width:1100px;

    margin:auto;

    background:linear-gradient(
        135deg,
        var(--azul-claro),
        #ffffff,
        var(--rosa-claro)
    );

    padding:60px;

    border-radius:34px;

    box-shadow:var(--shadow);

}

.info-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:18px;

}

.info-item{

    background:white;

    padding:28px 20px;

    border-radius:24px;

    text-align:center;

    box-shadow:0 14px 28px rgba(70,105,150,.10);

    transition:.3s;

}

.info-item:hover{

    transform:translateY(-6px);

}

.info-item span{

    font-size:2rem;

    display:block;

    margin-bottom:12px;

}

.info-item h3{

    color:var(--azul-escuro);

    margin-bottom:8px;

}

.info-item p{

    font-size:.95rem;

    line-height:1.45;

}

.info-item.destaque{

    border:2px solid var(--rosa);

}/* ==================================
   QUEM SOMOS
================================== */

.quem-somos {
  background: white;
}

/* ==================================
   INVESTIMENTO
================================== */

.investimento {
  background: linear-gradient(135deg, var(--azul-claro), #ffffff 45%, var(--rosa-claro));
}

.investimento-card {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: 36px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(70,105,150,.16);
}

.selo {
  display: inline-block;
  background: #ffe8f2;
  color: #d86f9c;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 900;
  margin-bottom: 24px;
}

.investimento-card small {
  display: block;
  color: #888;
  text-decoration: line-through;
  font-size: 1.2rem;
}

.investimento-card h2 {
  color: var(--rosa);
  font-size: 4.5rem;
  line-height: 1;
  margin: 20px 0 30px;
}

.investimento-card ul {
  list-style: none;
  max-width: 430px;
  margin: 0 auto 36px;
  text-align: left;
}

.investimento-card li {
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.investimento-card li::before {
  content: "✓ ";
  color: var(--azul);
  font-weight: 900;
}

/* ==================================
   FOOTER
================================== */

.footer {
  background: var(--azul-escuro);
  color: white;
  text-align: center;
  padding: 36px 20px;
}

/* ==================================
   RESPONSIVO
================================== */

@media (max-width: 1000px) {
  .hero-grid,
  .modulos-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-text {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  section {
    padding: 65px 0;
  }

  .header-content {
    flex-direction: column;
    gap: 16px;
  }

  .logo {
    height: 75px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-info {
    flex-direction: column;
  }

  .dor-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .dor-card {
    flex-direction: column;
    text-align: center;
  }

  .investimento-card {
    padding: 38px 24px;
  }

  .investimento-card h2 {
    font-size: 3.4rem;
  }

  .btn-primary,
  .btn-header {
    width: 100%;
    text-align: center;
  }
}.quem-box {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 44px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  text-align: center;
}

.quem-box p {
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.quem-box p:last-child {
  margin-bottom: 0;
}

.quem-box strong {
  color: var(--azul-escuro);
}.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 10px;

  background: #25D366;
  color: white;

  padding: 15px 20px;
  border-radius: 999px;

  font-weight: 900;
  box-shadow: 0 16px 35px rgba(37,211,102,.35);
  transition: .3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(37,211,102,.45);
}

.whatsapp-float span {
  font-size: 1.25rem;
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 14px 18px;
  }
}/* FAQ */

.faq {
  background: white;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq details {
  background: linear-gradient(180deg, #ffffff, var(--azul-claro));
  border-radius: 22px;
  padding: 22px 26px;
  box-shadow: var(--shadow);
}

.faq details:nth-child(even) {
  background: linear-gradient(180deg, #ffffff, var(--rosa-claro));
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--azul-escuro);
  font-size: 1.05rem;
}

.faq p {
  margin-top: 14px;
  line-height: 1.7;
}