/* ── RESET & TOKENS ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:        #ede6f4;
      --bg-light:  #f5f0fa;
      --purple:    #4a1e6e;
      --purple-md: #7b4fa6;
      --purple-lt: #c5a9df;
      --gold:      #c9a96e;
      --gold-lt:   #e8d5b0;
      --text:      #2e1642;
      --text-soft: #7a6585;
      --white:     #faf7fd;
      --radius:    16px;
      --transition: .35s cubic-bezier(.4,0,.2,1);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg-light); }
    ::-webkit-scrollbar-thumb { background: var(--purple-lt); border-radius: 99px; }

    /* ── NOISE TEXTURE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: .4;
    }

    /* ── NAVBAR ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      height: 72px;
      background: rgba(237,230,244,.88);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(74,30,110,.08);
      transition: box-shadow var(--transition);
    }
    nav.scrolled { box-shadow: 0 4px 32px rgba(74,30,110,.12); }

    .nav-logo img {
  height: 70px; width: auto;
  object-fit: contain;
  display: block;
  border-radius: 15px;
}
nav.scrolled .nav-logo img { height: 44px; transition: height var(--transition); }
    .nav-logo span:first-child {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.4rem;
      letter-spacing: .12em;
      color: var(--purple);
    }
    .nav-logo span:last-child {
      font-family: 'Great Vibes', cursive;
      font-size: .95rem;
      color: var(--gold);
      letter-spacing: .04em;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      font-size: .82rem;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--purple);
      opacity: .75;
      transition: opacity var(--transition);
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width var(--transition);
    }
    .nav-links a:hover { opacity: 1; }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      background: var(--purple);
      color: var(--white) !important;
      padding: .45rem 1.2rem;
      border-radius: 99px;
      opacity: 1 !important;
      transition: background var(--transition), transform var(--transition) !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--gold) !important; transform: translateY(-1px); }

    /* hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--purple);
      border-radius: 2px;
      transition: var(--transition);
    }
    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 72px; left: 0; right: 0;
      background: rgba(237,230,244,.97);
      backdrop-filter: blur(24px);
      padding: 2rem 5%;
      z-index: 999;
      flex-direction: column;
      gap: 1.2rem;
      border-bottom: 1px solid rgba(74,30,110,.1);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      text-decoration: none;
      font-size: .9rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--purple);
      padding: .4rem 0;
      border-bottom: 1px solid rgba(74,30,110,.08);
    }

    /* ── HERO ── */
    #hero {
      min-height: 100svh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 100px 5% 60px;
      position: relative;
      overflow: hidden;
    }

    /* Decorative blobs */
    #hero::before {
      content: '';
      position: absolute;
      top: -120px; right: -80px;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,169,110,.22) 0%, transparent 70%);
      animation: blobFloat 8s ease-in-out infinite;
    }
    #hero::after {
      content: '';
      position: absolute;
      bottom: -100px; left: -60px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(123,79,166,.14) 0%, transparent 70%);
      animation: blobFloat 10s ease-in-out infinite reverse;
    }
    @keyframes blobFloat {
      0%,100% { transform: translate(0,0) scale(1); }
      50%      { transform: translate(20px,30px) scale(1.05); }
    }

    .hero-text { position: relative; z-index: 1; }

    .hero-eyebrow {
      font-family: 'Great Vibes', cursive;
      font-size: 1.6rem;
      color: var(--gold);
      margin-bottom: .4rem;
      opacity: 0;
      animation: fadeUp .8s .2s forwards;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(2.8rem, 5.5vw, 5rem);
      line-height: 1.1;
      color: var(--purple);
      margin-bottom: 1.2rem;
      opacity: 0;
      animation: fadeUp .8s .4s forwards;
    }
    .hero-title em {
      font-style: italic;
      color: var(--purple-md);
    }
    .hero-sub {
      font-size: .95rem;
      font-weight: 300;
      color: var(--text-soft);
      line-height: 1.8;
      max-width: 460px;
      margin-bottom: 2.4rem;
      opacity: 0;
      animation: fadeUp .8s .6s forwards;
    }
    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp .8s .8s forwards;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      background: var(--purple);
      color: var(--white);
      padding: .9rem 2rem;
      border-radius: 99px;
      font-size: .85rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
      box-shadow: 0 8px 28px rgba(74,30,110,.25);
    }
    .btn-primary:hover {
      background: var(--gold);
      transform: translateY(-3px);
      box-shadow: 0 14px 36px rgba(201,169,110,.35);
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      border: 1.5px solid var(--purple);
      color: var(--purple);
      padding: .9rem 2rem;
      border-radius: 99px;
      font-size: .85rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all var(--transition);
    }
    .btn-outline:hover {
      background: var(--purple);
      color: var(--white);
      transform: translateY(-3px);
    }

    /* Hero image side */
    .hero-visual {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      animation: fadeIn 1.2s .5s forwards;
    }
    .hero-card {
      position: relative;
      width: min(380px, 90%);
      aspect-ratio: 3/4;
      border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(123,79,166,.18), rgba(201,169,110,.15));
      border: 1px solid rgba(201,169,110,.35);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-card-inner {
      font-family: 'Cormorant Garamond', serif;
      text-align: center;
      padding: 2rem;
    }
    .hero-card-inner .monogram {
      font-size: 9rem;
      font-weight: 600;
      color: var(--purple);
      opacity: .12;
      line-height: 1;
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      pointer-events: none;
    }
    .hero-card-content {
      position: relative;
      z-index: 1;
    }
    .hero-card-content p {
      font-family: 'Great Vibes', cursive;
      font-size: 2.2rem;
      color: var(--gold);
      margin-bottom: .5rem;
    }
    .hero-card-content h3 {
      font-size: 1.3rem;
      font-weight: 300;
      color: var(--purple);
      letter-spacing: .12em;
      text-transform: uppercase;
    }
/* ───────────────── HERO CARROSSEL ───────────────── */

.hc-wrap {
  position: relative;
  overflow: hidden;
}

.hc-track {
  display: flex;
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hc-slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/8;
}

/* IMAGENS */

.hc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;

  filter: saturate(0.75) brightness(0.55);

  transition: transform 8s ease;
}

.hc-slide.active img {
  transform: scale(1.04);
}

/* OVERLAY */

.hc-slide::after {
  content: '';
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(8,8,8,0.85) 0%,
    rgba(8,8,8,0.2) 50%,
    transparent 100%
  );

  pointer-events: none;
}

/* TEXTO */

.hc-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  padding: 2.5rem 3rem;

  z-index: 2;

  transform: translateY(8px);
  opacity: 0;

  transition:
    opacity 0.6s ease 0.2s,
    transform 0.6s ease 0.2s;
}

.hc-slide.active .hc-caption {
  opacity: 1;
  transform: translateY(0);
}

.hc-caption-tag {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;

  color: var(--gold);

  margin-bottom: 0.5rem;

  display: block;
}

.hc-caption-title {
  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(1.8rem, 3.5vw, 2.8rem);

  font-weight: 300;
  line-height: 1.1;

  color: var(--off);
}

.hc-caption-title em {
  font-style: italic;
  color: var(--gold);
}

.hc-caption-sub {
  font-size: 0.72rem;

  color: rgba(245,240,232,0.6);

  margin-top: 0.5rem;

  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* CONTROLES */

.hc-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 1rem 0 0;
}

/* BARRA */

.hc-progress-bar {
  flex: 1;

  height: 1px;

  background: rgba(201,168,76,0.15);

  position: relative;
  overflow: hidden;

  margin-right: 1.5rem;
}

.hc-progress-fill {
  position: absolute;
  top: 0;
  left: 0;

  height: 100%;

  background: var(--gold);

  width: 0%;

  transition: width linear;
}

/* DOTS */

.hc-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.hc-dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;
  border: none;

  background: rgba(201,168,76,0.25);

  cursor: pointer;

  transition:
    background 0.3s,
    transform 0.3s;
}

.hc-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* SETAS */

.hc-arrows {
  display: flex;
  gap: 0.5rem;

  margin-left: 1rem;
}

.hc-arrow {
  width: 38px;
  height: 38px;

  border: 1px solid rgba(201,168,76,0.2);

  background: transparent;

  cursor: pointer;

  color: var(--gray);

  font-size: 0.85rem;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    border-color 0.3s,
    color 0.3s;
}

.hc-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* RESPONSIVO */

@media (max-width: 640px) {

  .hc-slide {
    aspect-ratio: 4/3;
  }

  .hc-caption {
    padding: 1.5rem;
  }

  .hc-caption-title {
    font-size: 1.5rem;
  }

}
    /* Floating badge */
    .hero-badge {
      position: absolute;
      bottom: 30px; left: -20px;
      background: var(--white);
      border: 1px solid rgba(201,169,110,.4);
      border-radius: var(--radius);
      padding: 1rem 1.2rem;
      box-shadow: 0 12px 40px rgba(74,30,110,.15);
      display: flex;
      align-items: center;
      gap: .8rem;
    }
    .badge-icon {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--purple), var(--purple-md));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }
    .badge-text span:first-child {
      display: block;
      font-weight: 600;
      font-size: .9rem;
      color: var(--purple);
    }
    .badge-text span:last-child {
      font-size: .75rem;
      color: var(--text-soft);
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: scale(.96); }
      to   { opacity: 1; transform: scale(1); }
    }

    /* ── SECTION COMMONS ── */
    section { position: relative; z-index: 1; }

    .section-label {
      font-family: 'Great Vibes', cursive;
      font-size: 1.4rem;
      color: var(--gold);
      display: block;
      margin-bottom: .3rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(2rem, 4vw, 3.2rem);
      color: var(--purple);
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    .section-sub {
      font-size: .9rem;
      font-weight: 300;
      color: var(--text-soft);
      line-height: 1.9;
      max-width: 540px;
    }
    .divider {
      width: 48px; height: 2px;
      background: linear-gradient(to right, var(--gold), transparent);
      margin: 1.2rem 0 2.5rem;
    }

    /* ── SERVIÇOS ── */
    #servicos {
      padding: 100px 5%;
      background: var(--bg-light);
    }
    #servicos .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    #servicos .section-header .section-sub { margin: 0 auto; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 1.5rem;
    }

    .service-card {
      background: var(--bg);
      border: 1px solid rgba(197,169,223,.35);
      border-radius: var(--radius);
      padding: 2.2rem 1.8rem;
      position: relative;
      overflow: hidden;
      cursor: default;
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }
    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent 60%, rgba(201,169,110,.06));
      pointer-events: none;
    }
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(74,30,110,.12);
      border-color: rgba(201,169,110,.5);
    }
    .service-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(74,30,110,.1), rgba(123,79,166,.12));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.4rem;
      border: 1px solid rgba(197,169,223,.4);
    }
    .service-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.25rem;
      color: var(--purple);
      margin-bottom: .6rem;
    }
    .service-card p {
      font-size: .83rem;
      font-weight: 300;
      color: var(--text-soft);
      line-height: 1.8;
    }
    .service-tag {
      display: inline-block;
      margin-top: 1.2rem;
      font-size: .72rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(201,169,110,.35);
      padding: .3rem .8rem;
      border-radius: 99px;
    }

    /* ── BENEFÍCIOS ── */
    #beneficios {
      padding: 100px 5%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }
    .beneficios-visual {
      position: relative;
    }
    .beneficios-circle {
      width: 100%;
      max-width: 420px;
      aspect-ratio: 1;
      border-radius: 50%;
      background: conic-gradient(from 180deg, rgba(74,30,110,.07), rgba(201,169,110,.12), rgba(74,30,110,.07));
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      position: relative;
    }
    .beneficios-circle::before {
      content: '';
      position: absolute;
      inset: 20px;
      border-radius: 50%;
      border: 1px dashed rgba(201,169,110,.3);
      animation: spin 20s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .beneficios-circle-inner {
      text-align: center;
      padding: 2rem;
    }
    .beneficios-circle-inner p {
      font-family: 'Great Vibes', cursive;
      font-size: 2rem;
      color: var(--gold);
    }
    .beneficios-circle-inner h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 300;
      color: var(--purple);
    }

    .beneficios-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
      margin-top: 2.5rem;
    }
    .beneficio-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }
    .beneficio-check {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--purple), var(--purple-md));
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
      font-size: .85rem;
      color: white;
    }
    .beneficio-text h4 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.05rem;
      color: var(--purple);
      margin-bottom: .2rem;
    }
    .beneficio-text p {
      font-size: .82rem;
      font-weight: 300;
      color: var(--text-soft);
      line-height: 1.7;
    }

    /* ── DEPOIMENTOS ── */
    #depoimentos {
      padding: 100px 5%;
      background: var(--purple);
      position: relative;
      overflow: hidden;
    }
    #depoimentos::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    #depoimentos .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    #depoimentos .section-label { color: var(--gold-lt); }
    #depoimentos .section-title { color: var(--white); }
    #depoimentos .divider {
      background: linear-gradient(to right, var(--gold-lt), transparent);
      margin: 1rem auto 0;
    }

    .depo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .depo-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius);
      padding: 2rem;
      backdrop-filter: blur(8px);
      transition: background var(--transition), transform var(--transition);
    }
    .depo-card:hover {
      background: rgba(255,255,255,.1);
      transform: translateY(-4px);
    }
    .depo-stars {
      color: var(--gold);
      font-size: 1rem;
      letter-spacing: 3px;
      margin-bottom: 1rem;
    }
    .depo-text {
      font-size: .875rem;
      font-weight: 300;
      color: rgba(255,255,255,.82);
      line-height: 1.85;
      font-style: italic;
      margin-bottom: 1.4rem;
    }
    .depo-author {
      display: flex;
      align-items: center;
      gap: .8rem;
    }
    .depo-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-lt));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.1rem;
      color: var(--purple);
    }
    .depo-info span:first-child {
      display: block;
      font-weight: 500;
      font-size: .875rem;
      color: var(--white);
    }
    .depo-info span:last-child {
      font-size: .75rem;
      color: rgba(255,255,255,.5);
    }

    /* ── CONTATO ── */
    #contato {
      padding: 100px 5%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }
    .contato-info .section-sub { margin-bottom: 2.5rem; }

    .info-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      margin-bottom: 1.5rem;
    }
    .info-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: rgba(74,30,110,.08);
      border: 1px solid rgba(197,169,223,.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .info-text span:first-child {
      display: block;
      font-weight: 500;
      font-size: .82rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--purple-md);
      margin-bottom: .2rem;
    }
    .info-text span:last-child {
      font-size: .9rem;
      color: var(--text);
    }

    .contact-form {
      background: var(--bg-light);
      border: 1px solid rgba(197,169,223,.3);
      border-radius: 24px;
      padding: 2.5rem;
    }
    .form-group {
      margin-bottom: 1.2rem;
    }
    .form-group label {
      display: block;
      font-size: .78rem;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--purple-md);
      margin-bottom: .5rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: var(--bg);
      border: 1px solid rgba(197,169,223,.4);
      border-radius: 10px;
      padding: .85rem 1rem;
      font-family: 'Jost', sans-serif;
      font-size: .875rem;
      font-weight: 300;
      color: var(--text);
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition);
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--purple-md);
      box-shadow: 0 0 0 3px rgba(74,30,110,.08);
    }
    .form-group textarea { resize: vertical; min-height: 110px; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    .btn-submit {
      width: 100%;
      background: linear-gradient(135deg, var(--purple), var(--purple-md));
      color: var(--white);
      border: none;
      padding: 1rem;
      border-radius: 99px;
      font-family: 'Jost', sans-serif;
      font-size: .85rem;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
      box-shadow: 0 8px 28px rgba(74,30,110,.25);
    }
    .btn-submit:hover {
      opacity: .88;
      transform: translateY(-2px);
      box-shadow: 0 14px 36px rgba(74,30,110,.3);
    }

    /* WhatsApp CTA section */
    .wpp-section {
      margin-top: 2.5rem;
      padding: 1.5rem;
      background: linear-gradient(135deg, rgba(37,211,102,.08), rgba(37,211,102,.04));
      border: 1px solid rgba(37,211,102,.2);
      border-radius: var(--radius);
      text-align: center;
    }
    .wpp-section p {
      font-size: .82rem;
      color: var(--text-soft);
      margin-bottom: .8rem;
    }
    .btn-wpp {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      background: #25d366;
      color: white;
      padding: .8rem 1.8rem;
      border-radius: 99px;
      text-decoration: none;
      font-size: .85rem;
      font-weight: 500;
      letter-spacing: .06em;
      transition: background var(--transition), transform var(--transition);
    }
    .btn-wpp:hover { background: #1da851; transform: translateY(-2px); }

    /* ── FOOTER ── */
    footer {
      background: var(--text);
      padding: 60px 5% 32px;
      position: relative;
      z-index: 1;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    .footer-brand .nav-logo { margin-bottom: 1rem; }
    .footer-brand .nav-logo span:first-child { color: var(--white); }
    .footer-brand p {
      font-size: .82rem;
      font-weight: 300;
      color: rgba(255,255,255,.45);
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }
    .social-links { display: flex; gap: .7rem; }
    .social-link {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.15);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: .9rem;
      color: rgba(255,255,255,.5);
      transition: all var(--transition);
    }
    .social-link:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    .footer-col h4 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1rem;
      color: var(--white);
      letter-spacing: .08em;
      margin-bottom: 1.2rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: .7rem; }
    .footer-col ul a {
      text-decoration: none;
      font-size: .82rem;
      font-weight: 300;
      color: rgba(255,255,255,.45);
      transition: color var(--transition);
    }
    .footer-col ul a:hover { color: var(--gold); }

    .footer-hours li {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      font-size: .8rem;
      color: rgba(255,255,255,.4);
      padding: .3rem 0;
      border-bottom: 1px solid rgba(255,255,255,.04);
    }
    .footer-hours li span:last-child { color: rgba(255,255,255,.6); }

    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,.06);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); font-weight: 300; }
    .footer-bottom a { color: var(--gold); text-decoration: none; }

    /* ── WHATSAPP FLOAT ── */
    .wpp-float {
      position: fixed;
      bottom: 32px; right: 32px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: .8rem;
    }
    .wpp-float-bubble {
      background: var(--white);
      color: var(--text);
      padding: .7rem 1.1rem;
      border-radius: 16px 16px 4px 16px;
      font-size: .8rem;
      box-shadow: 0 8px 28px rgba(0,0,0,.12);
      border: 1px solid rgba(197,169,223,.3);
      opacity: 0;
      transform: translateY(8px) scale(.95);
      pointer-events: none;
      transition: all .3s;
      white-space: nowrap;
    }
    .wpp-float:hover .wpp-float-bubble {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    .wpp-float-btn {
      width: 58px; height: 58px;
      border-radius: 50%;
      background: #25d366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(37,211,102,.4);
      text-decoration: none;
      font-size: 1.6rem;
      transition: transform var(--transition), box-shadow var(--transition);
      animation: wppPulse 3s ease-in-out infinite;
    }
    .wpp-float-btn:hover {
      transform: scale(1.12);
      box-shadow: 0 14px 36px rgba(37,211,102,.5);
      animation: none;
    }
    @keyframes wppPulse {
      0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.3); }
      50%      { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 12px rgba(37,211,102,0); }
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }

      #hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 110px;
      }
      .hero-sub { margin: 0 auto 2rem; }
      .hero-actions { justify-content: center; }
      .hero-visual { margin-top: 3rem; }
      .hero-badge { left: 50%; transform: translateX(-50%); bottom: -20px; }
      #hero::before { width: 300px; height: 300px; }
      #hero::after  { width: 250px; height: 250px; }

      #beneficios {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      .beneficios-circle { max-width: 280px; }

      #contato {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; text-align: center; }

      .form-row { grid-template-columns: 1fr; }

      .wpp-float { bottom: 20px; right: 20px; }
    }

    @media (max-width: 480px) {
      .hero-title { font-size: 2.4rem; }
      .btn-primary, .btn-outline { padding: .8rem 1.4rem; font-size: .8rem; }
      #servicos, #beneficios, #depoimentos, #contato { padding: 70px 5%; }
    }

    .logonex {
        margin-bottom: -12px;
        border-radius: 10px;
        height: 30px;
        width: auto;
    }