/* ============================================================
   ESPAÇO DA MULHER — REDESIGN STYLES
   Palette: Rosa vibrante + Dourado + Roxo + Branco
   Font: Playfair Display (display) + DM Sans (body)
   ============================================================ */


/* ============================================================ VARIABLES ============================================================ */
:root {
  --pink:         #F72585;
  --pink-deep:    #c1177a;
  --pink-soft:    #ff6db6;
  --pink-pale:    #ffd6ec;
  --gold:         #E0A526;
  --gold-light:   #f5cd6e;
  --gold-pale:    #fff4d6;
  --purple:       #7B2D8B;
  --purple-deep:  #4a1a57;
  --purple-mid:   #9b45ac;
  --white:        #FFFFFF;
  --off-white:    #FDF8FF;
  --dark:         #0d0011;
  --dark-mid:     #1e0528;
  --mid:          #4a3552;
  --soft:         #9a7faa;

  --grad-hero:    linear-gradient(135deg, #4a1a57 0%, #7B2D8B 30%, #c1177a 65%, #F72585 100%);
  --grad-pink:    linear-gradient(135deg, #F72585 0%, #ff6db6 100%);
  --grad-gold:    linear-gradient(135deg, #c8860a 0%, #E0A526 50%, #f5cd6e 100%);
  --grad-purple:  linear-gradient(135deg, #4a1a57 0%, #7B2D8B 100%);
  --grad-card:    linear-gradient(145deg, rgba(123,45,139,.12) 0%, rgba(247,37,133,.06) 100%);
  --grad-dif:     linear-gradient(160deg, #1e0528 0%, #2d0a3e 100%);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;
  --radius-xl:  48px;

  --shadow-pink:   0 8px 40px rgba(247,37,133,.35);
  --shadow-gold:   0 8px 40px rgba(224,165,38,.35);
  --shadow-card:   0 12px 48px rgba(75,26,87,.18);

  --transition: 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;

  --section-pad: 110px;
  --container: 1240px;
}

/* ============================================================ RESET ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--off-white); color: var(--dark); line-height: 1.72; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }

/* ============================================================ UTILITIES ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-label i { font-size: 14px; color: var(--pink); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 18px;
}
.section-title em { color: var(--pink); font-style: italic; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--soft);
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 48px;
}

.section-head { margin-bottom: 60px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(44px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* Hero animate */
.hero-animate { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }

/* ============================================================ BUTTONS ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px; border-radius: 100px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; cursor: pointer;
  border: none; transition: var(--transition); position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.22), transparent);
  opacity: 0; transition: var(--transition-fast);
}
.btn:hover::before { opacity: 1; }
.btn i { font-size: 18px; }

.btn-primary {
  background: var(--grad-pink); color: var(--white);
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(247,37,133,.5); }

.btn-gold {
  background: var(--grad-gold); color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(224,165,38,.5); }

.btn-ghost {
  background: rgba(255,255,255,.12); color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

.btn-outline-rose {
  background: transparent; color: var(--pink);
  border: 2px solid var(--pink);
}
.btn-outline-rose:hover { background: var(--pink); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-pink); }

.btn-glow { animation: btn-pulse 2.8s ease-in-out infinite; will-change: transform; }
@keyframes btn-pulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.02); }
}
.btn-gold.btn-glow { animation: btn-pulse-gold 2.8s ease-in-out infinite; will-change: transform; }
@keyframes btn-pulse-gold {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.02); }
}

.btn-xl { padding: 20px 52px; font-size: 15px; }

/* Nav CTA */
.btn-nav-cta {
  background: var(--grad-pink); color: var(--white);
  padding: 10px 22px; font-size: 11px; letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(247,37,133,.4);
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-pink); }

/* ============================================================ NAVBAR ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0; transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(24px);
  padding: 14px 0;
  box-shadow: 0 2px 50px rgba(123,45,139,.12);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; flex-direction: column; }
.nav-logo-main {
  font-family: var(--font-display); font-size: 1.45rem;
  font-weight: 700; color: var(--white); letter-spacing: 0.3px;
  transition: var(--transition);
}
.nav-logo-sub {
  font-size: 9px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,.65);
  transition: var(--transition);
}
#navbar.scrolled .nav-logo-main { color: var(--purple); }
#navbar.scrolled .nav-logo-sub { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 11.5px; font-weight: 500; letter-spacing: 1.2px;
  text-transform: uppercase; color: rgba(255,255,255,.82); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: var(--transition); border-radius: 2px;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
#navbar.scrolled .nav-link { color: var(--mid); }
#navbar.scrolled .nav-link:hover { color: var(--pink); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
#navbar.scrolled .nav-toggle span { background: var(--purple); }

/* Mobile */
.nav-mobile {
  position: fixed; inset: 0; z-index: 1100;
  background: linear-gradient(160deg, #1e0528 0%, #3d0e52 50%, #c1177a 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px; opacity: 0; visibility: hidden; transition: var(--transition);
}
.nav-mobile.open { opacity: 1; visibility: visible; }
.nav-mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: var(--white); width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; font-size: 24px; display: flex; align-items: center; justify-content: center;
}
.nav-mobile-brand {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
  color: var(--white); margin-bottom: 16px;
}
.nav-mobile-link {
  font-size: 18px; font-weight: 500; color: rgba(255,255,255,.85);
  letter-spacing: 1px; text-transform: uppercase;
  transition: var(--transition-fast);
}
.nav-mobile-link:hover { color: var(--gold); }
.mobile-cta { margin-top: 16px; }

/* ============================================================ HERO ============================================================ */
/* ============================================================
HERO PREMIUM EDITORIAL
============================================================ */

#hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;

  display: flex;
  align-items: center;

  padding: 140px 0 220px;

  background:
          linear-gradient(
                  135deg,
                  #120315 0%,
                  #2b0b36 40%,
                  #6f2f7e 75%,
                  #b86d92 100%
          );
}

#hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(253, 248, 255, 0.6) 50%,
    #FDF8FF 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* BACKGROUND LIGHTS */

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-light {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
}

.hero-light-1 {
  width: 420px;
  height: 420px;

  top: -120px;
  right: -120px;

  background: rgba(255, 182, 210, 0.12);
}

.hero-light-2 {
  width: 300px;
  height: 300px;

  left: -100px;
  bottom: -100px;

  background: rgba(247, 37, 133, 0.12);
}

/* GRID */

.hero-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 520px;

  gap: 72px;
  align-items: center;
}

/* ============================================================
CONTENT
============================================================ */

.hero-content {
  max-width: 560px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 28px;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(255,255,255,.08);

  border: 1px solid rgba(255,255,255,.12);

  color: rgba(255,255,255,.82);

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;

  backdrop-filter: blur(12px);

  i {
    color: #E0A526;
    font-size: 14px;
  }
}

/* TITLE */

.hero-title {
  margin: 0 0 26px;

  font-family: 'Playfair Display', serif;

  font-size: clamp(2.8rem, 4.2vw, 4.3rem);

  line-height: 1.02;
  letter-spacing: -1.8px;

  font-weight: 600;

  color: #fff;

  em {
    font-style: italic;
    color: #f4c46b;
    font-weight: 500;
  }
}

/* DESCRIPTION */

.hero-description {
  max-width: 460px;

  margin-bottom: 38px;

  color: rgba(255,255,255,.76);

  font-size: 1.02rem;
  line-height: 1.9;
}

/* ACTIONS */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;

  margin-bottom: 46px;
}

/* BUTTONS */

.btn-primary,
.btn-secondary {
  height: 58px;

  padding: 0 28px;

  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-size: .95rem;
  font-weight: 600;

  transition: all .3s ease;

  text-decoration: none;
}

/* PRIMARY */

.btn-primary {
  background:
          linear-gradient(
                  135deg,
                  #F72585 0%,
                  #c1177a 100%
          );

  color: #fff;

  box-shadow:
          0 14px 40px rgba(247,37,133,.28);

  &:hover {
    transform: translateY(-3px);

    box-shadow:
            0 18px 50px rgba(247,37,133,.38);
  }
}

/* SECONDARY */

.btn-secondary {
  border: 1px solid rgba(255,255,255,.16);

  background: rgba(255,255,255,.05);

  color: rgba(255,255,255,.92);

  backdrop-filter: blur(10px);

  &:hover {
    background: rgba(255,255,255,.10);

    transform: translateY(-2px);
  }
}

/* FEATURES */

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 48px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;

  color: rgba(255,255,255,.72);

  font-size: .92rem;

  i {
    color: #E0A526;
    font-size: 16px;
  }
}

/* ============================================================
IMAGE
============================================================ */

.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;

  overflow: hidden;

  border-radius: 34px;

  border:
          1px solid rgba(255,255,255,.10);

  box-shadow:
          0 40px 100px rgba(0,0,0,.45);

  transform: translateY(20px);

  img {
    width: 100%;
    height: 520px;

    object-fit: cover;
    display: block;
  }
}

.hero-image-overlay {
  position: absolute;
  inset: 0;

  background:
          linear-gradient(
                  180deg,
                  rgba(0,0,0,0) 45%,
                  rgba(193,23,122,.25) 100%
          );
}

/* BADGE */

.hero-badge {
  position: absolute;

  left: -30px;
  bottom: 40px;

  background: rgba(255,255,255,.95);

  backdrop-filter: blur(20px);

  border-radius: 24px;

  padding: 18px 22px;

  box-shadow:
          0 20px 50px rgba(0,0,0,.25);

  display: flex;
  flex-direction: column;
  gap: 4px;

  .badge-label {
    width: fit-content;

    padding: 4px 10px;

    border-radius: 999px;

    background:
            linear-gradient(
                    135deg,
                    #E0A526 0%,
                    #f4c46b 100%
            );

    color: #fff;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
  }

  strong {
    color: #1e0528;

    font-size: 15px;
    font-weight: 700;
  }

  small {
    color: #7b7280;

    font-size: 12px;
  }
}

/* ============================================================
RESPONSIVE
============================================================ */

@media (max-width: 1100px) {

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-visual {
    max-width: 520px;
  }
}

@media (max-width: 768px) {

  #hero {
    padding: 120px 0 180px;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 9vw, 3.5rem);
  }

  .hero-description {
    font-size: .98rem;
    line-height: 1.8;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .hero-image-card img {
    height: 460px;
  }

  .hero-badge {
    left: 16px;
    bottom: 16px;
  }
}
/* ============================================================ SOBRE ============================================================ */
#sobre {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}
.sobre-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.sobre-img-stack { position: relative; }
.sobre-img-main {
  border-radius: var(--radius-lg); width: 100%;
  height: 560px; object-fit: cover;
  box-shadow: var(--shadow-card);
}
.sobre-img-accent {
  position: absolute; bottom: -28px; right: -28px;
  width: 210px; height: 210px; object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.sobre-exp-badge {
  position: absolute; top: 32px; left: -24px;
  background: var(--grad-gold); color: var(--white);
  border-radius: var(--radius-md); padding: 20px 24px; text-align: center;
  box-shadow: var(--shadow-gold);
}
.sobre-exp-badge strong { display: block; font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; line-height: 1; }
.sobre-exp-badge span { font-size: 12px; opacity: .85; }

.sobre-text { color: var(--mid); margin-bottom: 20px; line-height: 1.85; }
.sobre-text strong { color: var(--purple); }

.sobre-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.sobre-value {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px; border-radius: var(--radius-md);
  background: var(--white); border: 1px solid rgba(123,45,139,.08);
  box-shadow: 0 4px 20px rgba(123,45,139,.06);
  transition: var(--transition);
}
.sobre-value:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(247,37,133,.15); }
.sobre-value-icon {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(247,37,133,.12), rgba(123,45,139,.1));
  display: flex; align-items: center; justify-content: center;
}
.sobre-value-icon i { font-size: 20px; color: var(--pink); }
.sobre-value strong { display: block; font-size: 13px; color: var(--dark); margin-bottom: 4px; }
.sobre-value span { font-size: 12px; color: var(--soft); }

/* ============================================================ SERVIÇOS CARROSSEL ============================================================ */
#servicos {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, #fdf8ff 0%, #fff 100%);
}
.servicos-carousel-wrap {
  position: relative; display: flex; align-items: center; gap: 0;
}
.carousel-btn {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
  background: var(--white); border: 2px solid rgba(247,37,133,.2);
  color: var(--pink); font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); box-shadow: 0 4px 20px rgba(247,37,133,.1);
  z-index: 10; flex-shrink: 0;
}
.carousel-btn:hover { background: var(--pink); color: var(--white); border-color: var(--pink); box-shadow: var(--shadow-pink); }

.servicos-carousel {
  flex: 1; overflow: hidden; margin: 0 20px;
}
.servicos-track {
  display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.servico-card {
  min-width: 300px; flex: 0 0 300px;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 30px; position: relative; overflow: hidden;
  border: 1px solid rgba(123,45,139,.08);
  box-shadow: 0 8px 40px rgba(123,45,139,.07);
  transition: var(--transition);
}
.servico-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: rgba(247,37,133,.2); }
.servico-card:hover .servico-card-glow { opacity: 1; }

.servico-card-glow {
  position: absolute; inset: 0; opacity: 0; transition: var(--transition);
  background: linear-gradient(145deg, rgba(247,37,133,.04) 0%, rgba(123,45,139,.03) 100%);
}
.servico-icon {
  width: 60px; height: 60px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(247,37,133,.12), rgba(123,45,139,.08));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: var(--transition);
}
.servico-card:hover .servico-icon {
  background: var(--grad-pink);
}
.servico-icon i { font-size: 28px; color: var(--pink); transition: var(--transition); }
.servico-card:hover .servico-icon i { color: var(--white); }

.servico-card h3 {
  font-family: var(--font-display); font-size: 1.35rem;
  font-weight: 700; color: var(--dark); margin-bottom: 12px;
}
.servico-card p { font-size: 14px; color: var(--soft); line-height: 1.75; margin-bottom: 20px; }
.servico-card ul { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.servico-card li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--mid); }
.servico-card li i { color: var(--pink); font-size: 16px; }

.servico-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--pink);
  letter-spacing: 1px; text-transform: uppercase; transition: var(--transition);
}
.servico-btn:hover { gap: 14px; color: var(--pink-deep); }
.servico-btn i { font-size: 18px; transition: var(--transition); }

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 36px; }
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(247,37,133,.25); border: none; cursor: pointer; transition: var(--transition);
}
.carousel-dot.active { background: var(--pink); transform: scale(1.3); }

/* ============================================================ ANTES E DEPOIS ============================================================ */
#antes-depois {
  padding: var(--section-pad) 0;
  background: var(--dark-mid);
}
#antes-depois .section-title { color: var(--white); }
#antes-depois .section-subtitle { color: rgba(255,255,255,.55); }

.antes-depois-scroll {
  display: flex; gap: 32px; overflow-x: auto;
  scroll-snap-type: x mandatory; padding-bottom: 16px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.antes-depois-scroll::-webkit-scrollbar { display: none; }

.ad-item { flex: 0 0 380px; scroll-snap-align: start; }

.ad-compare {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; height: 480px; cursor: ew-resize;
  user-select: none; box-shadow: 0 20px 60px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.1);
}
.ad-before, .ad-after {
  position: absolute; inset: 0;
}
.ad-before img, .ad-after img {
  width: 100%; height: 100%;
}
.ad-after { clip-path: inset(0 50% 0 0); transition: clip-path 0.05s linear; }

.ad-slider-line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 3px;
  background: var(--gold); z-index: 10;
  pointer-events: none;
}
.ad-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; box-shadow: 0 4px 20px rgba(0,0,0,.4);
  pointer-events: none;
}
.ad-handle i { font-size: 14px; }

.ad-tag {
  position: absolute; top: 16px; z-index: 5;
  background: rgba(0,0,0,.6); backdrop-filter: blur(8px);
  color: var(--white); font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}
.before-tag { left: 16px; }
.after-tag { right: 16px; }

.ad-label {
  text-align: center; margin-top: 18px;
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 600; color: var(--white);
}

/* ============================================================ DIFERENCIAIS ============================================================ */
#diferenciais {
  padding: var(--section-pad) 0;
  background: linear-gradient(160deg, #1e0528 0%, #2d0a3e 60%, #4a1a57 100%);
  position: relative; overflow: hidden;
}
#diferenciais::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(247,37,133,.12), transparent 60%);
}
.diferenciais-title { color: var(--white); }

.dif-list {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg);
  overflow: hidden; position: relative; z-index: 1;
}
.dif-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 36px 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .25s;
}
.dif-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
.dif-item:nth-last-child(-n+2) { border-bottom: none; }
.dif-item:hover { background: rgba(255,255,255,.04); }

.dif-icon-wrap {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad-pink);
  display: flex; align-items: center; justify-content: center;
}
.dif-icon-wrap i { font-size: 24px; color: var(--white); }

.dif-body h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.dif-body p { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ============================================================ CURSO ============================================================ */
#curso{

  padding:100px 0;
  background:#faf8fd;

}

.curso-wrapper{

  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:60px;
  align-items:center;

}

.curso-badge{

  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:10px 18px;

  border-radius:100px;

  background:#ffe8f4;

  color:#F72585;

  font-size:13px;
  font-weight:700;

  margin-bottom:25px;

}

.curso-left h2{

  font-size:3rem;
  line-height:1.1;
  margin-bottom:25px;

  color:#161616;

  max-width:700px;

}

.curso-desc{

  font-size:18px;
  line-height:1.8;

  color:#666;

  margin-bottom:35px;

}

.curso-benefits{

  display:grid;

  grid-template-columns:repeat(2,1fr);

  gap:15px;

  margin-bottom:40px;

}

.benefit{

  background:white;

  padding:18px;

  border-radius:18px;

  display:flex;
  align-items:center;
  gap:12px;

  font-size:14px;

  box-shadow:0 10px 25px rgba(0,0,0,.05);

  transition:.4s;

}

.benefit:hover{

  transform:translateY(-5px);

}

.benefit i{

  font-size:20px;
  color:#25D366;

}

.curso-proof{

  display:flex;
  gap:30px;

}

.curso-proof div{

  text-align:center;

}

.curso-proof h3{

  font-size:32px;

  color:#7B2D8B;

  margin-bottom:5px;

}

.curso-proof span{

  font-size:13px;

  color:#777;

}



.curso-card{

  background:white;

  padding:24px;

  border-radius:30px;

  box-shadow:

          0 25px 60px rgba(0,0,0,.08);

  position:relative;

}

.tag-oferta{

  position:absolute;

  top:20px;
  right:20px;

  background:#F72585;

  color:white;

  padding:8px 16px;

  font-size:12px;
  font-weight:700;

  border-radius:100px;

  display:flex;
  gap:6px;
  align-items:center;

}

.curso-card img{

  width:100%;
  height:260px;

  border-radius:20px;

  object-fit:cover;

  margin-bottom:25px;

}

.price-box{

  text-align:center;

  margin-bottom:25px;

}

.old-price{

  display:block;

  text-decoration:line-through;

  color:#999;

  margin-bottom:10px;

}

.new-price small{

  display:block;

  font-size:13px;

  color:#888;

  margin-bottom:5px;

}

.new-price div{

  font-size:4rem;

  font-weight:800;

  line-height:1;

  color:#7B2D8B;

}

.new-price span{

  font-size:25px;

}

.price-box p{

  margin-top:10px;

  color:#666;

  font-size:14px;

}

.curso-btn{

  display:flex;

  justify-content:center;
  align-items:center;
  gap:10px;

  width:100%;

  padding:20px;

  border-radius:18px;

  background:linear-gradient(
          135deg,
          #25D366,
          #128C7E
  );

  color:white;

  font-size:16px;
  font-weight:700;

  text-decoration:none;

  transition:.4s;

  box-shadow:
          0 10px 35px rgba(37,211,102,.4);

}

.curso-btn:hover{

  transform:translateY(-4px);

}

.curso-safe{

  margin-top:18px;

  text-align:center;

  font-size:13px;

  color:#777;

}

.curso-safe i{

  color:#25D366;

}

.curso-content-list{

  margin-top:80px;

  background:white;

  padding:40px;

  border-radius:30px;

  box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.curso-content-list h3{

  margin-bottom:30px;

  font-size:28px;

  text-align:center;

}

.content-grid{

  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:15px;

}

.content-grid div{

  padding:16px;

  background:#faf6ff;

  border-radius:15px;

  text-align:center;

  font-size:14px;

  font-weight:600;

}


@media(max-width:980px){

  .curso-wrapper{

    grid-template-columns:1fr;

  }

  .curso-left h2{

    font-size:2.2rem;

  }

  .content-grid{

    grid-template-columns:repeat(2,1fr);

  }

  .curso-benefits{

    grid-template-columns:1fr;

  }

  .curso-proof{

    justify-content:space-between;

  }

}

/* ============================================================ DEPOIMENTOS ============================================================ */
#depoimentos {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, #fff 0%, #fdf4fb 100%);
}
.depoimentos-slider { position: relative; overflow: hidden; }
.depoimentos-track {
  display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.depoimento-card {
  min-width: calc(33.333% - 16px); flex: 0 0 calc(33.333% - 16px);
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; position: relative; overflow: hidden;
  border: 1px solid rgba(123,45,139,.08);
  box-shadow: 0 8px 40px rgba(123,45,139,.07);
  transition: var(--transition);
}
.depoimento-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-pink); opacity: 0; transition: var(--transition);
}
.depoimento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.depoimento-card:hover::before { opacity: 1; }

.dep-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.dep-stars i { color: var(--gold); font-size: 16px; }
.dep-quote-icon {
  font-size: 48px; color: rgba(247,37,133,.12);
  position: absolute; top: 24px; right: 24px;
}
.depoimento-card p { font-size: 14.5px; color: var(--mid); line-height: 1.85; margin-bottom: 24px; font-style: italic; }

.dep-author { display: flex; align-items: center; gap: 14px; }
.dep-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad-pink); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
}
.dep-author strong { display: block; font-size: 14px; color: var(--dark); font-weight: 600; }
.dep-author span { font-size: 12px; color: var(--soft); }

.dep-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 40px;
}
.dep-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 2px solid rgba(247,37,133,.2);
  color: var(--pink); font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); box-shadow: 0 4px 20px rgba(247,37,133,.1);
}
.dep-btn:hover { background: var(--pink); color: var(--white); border-color: var(--pink); }

.dep-dots { display: flex; gap: 8px; }
.dep-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(247,37,133,.25); border: none; cursor: pointer; transition: var(--transition);
}
.dep-dot.active { background: var(--pink); transform: scale(1.3); }

/* ============================================================ FAQ ============================================================ */
#faq { padding: var(--section-pad) 0; background: var(--off-white); }
.faq-inner { display: grid; grid-template-columns: 1fr 1.8fr; gap: 80px; align-items: start; }
.faq-sidebar { position: sticky; top: 100px; }
.faq-sidebar .section-subtitle { font-size: .98rem; }
.faq-sidebar .btn { margin-top: 0; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid rgba(123,45,139,.08); overflow: hidden;
  box-shadow: 0 4px 20px rgba(123,45,139,.05); transition: var(--transition);
}
.faq-item:hover { border-color: rgba(247,37,133,.15); }
.faq-item.open { border-color: rgba(247,37,133,.2); box-shadow: 0 8px 40px rgba(247,37,133,.08); }

.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 28px; text-align: left; transition: var(--transition);
}
.faq-question span { font-size: 15px; font-weight: 600; color: var(--dark); line-height: 1.5; }
.faq-icon { font-size: 22px; color: var(--pink); flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 220px; }
.faq-answer p {
  padding: 0 28px 22px; font-size: 14.5px; color: var(--mid); line-height: 1.8;
}

/* ============================================================ CTA FINAL ============================================================ */
#cta-final {
  padding: var(--section-pad) 0;
  background: var(--grad-hero); position: relative; overflow: hidden; text-align: center;
}
.cta-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.cta-orb-1 {
  width: 600px; height: 600px; top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(224,165,38,.25), transparent 70%);
}
.cta-orb-2 {
  width: 400px; height: 400px; bottom: -150px; right: -50px;
  background: radial-gradient(circle, rgba(123,45,139,.4), transparent 70%);
}
.cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800; color: var(--white); line-height: 1.12; margin-bottom: 24px;
}
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-sub { color: rgba(255,255,255,.75); font-size: 1.1rem; line-height: 1.85; margin-bottom: 48px; }
.cta-trust {
  display: flex; justify-content: center; gap: 32px;
  flex-wrap: wrap; margin-top: 40px;
}
.cta-trust div {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.72); font-size: 13px;
}
.cta-trust i { color: var(--gold-light); font-size: 18px; }

/* ============================================================ FOOTER ============================================================ */
#footer { background: var(--dark); padding: 72px 0 36px; }
.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand-name {
  font-family: var(--font-display); font-size: 1.55rem;
  font-weight: 700; color: var(--white); margin-bottom: 6px;
}
.footer-brand-sub {
  display: block; font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,.45); line-height: 1.85; margin-bottom: 28px; }
.footer-social { display: flex; gap: 12px; }
.footer-soc-link {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  color: var(--white); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-soc-link:hover { background: var(--pink); border-color: var(--pink); transform: translateY(-3px); }
.footer-col-title {
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-contact-item i { font-size: 18px; color: var(--gold); flex-shrink: 0; }
.footer-contact-item a { font-size: 13.5px; color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 30px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-bottom span { color: var(--gold); }
.footer-credit {
  border-top: 1px solid rgba(255,255,255,.07); margin-top: 20px; padding-top: 16px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.footer-credit span { font-size: 11px; color: rgba(255,255,255,.45); }
.footer-credit a { display: flex; align-items: center; opacity: .6; transition: opacity .2s; }
.footer-credit a:hover { opacity: 1; }
.footer-credit-logo { height: 20px; width: auto; filter: brightness(0) invert(1); }

/* ============================================================ FLOATING WA ============================================================ */
#whatsapp-float { position: fixed; bottom: 32px; right: 32px; z-index: 900; }
.whatsapp-btn {
  width: 62px; height: 62px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; box-shadow: 0 8px 30px rgba(37,211,102,.5);
  transition: var(--transition); position: relative;
}
.whatsapp-btn::before {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  background: rgba(37,211,102,.2); animation: pulse-wa 2s infinite;
  will-change: transform, opacity;
}
@keyframes pulse-wa {
  0%, 100% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.3); opacity: 0; }
}
.whatsapp-btn:hover { transform: scale(1.1) translateY(-3px); }
.whatsapp-tooltip {
  position: absolute; right: 74px; top: 50%; transform: translateY(-50%);
  background: var(--dark); color: var(--white); padding: 8px 14px;
  border-radius: var(--radius-sm); font-size: 12px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.whatsapp-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%;
  transform: translateY(-50%); border: 6px solid transparent;
  border-left-color: var(--dark);
}
#whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ============================================================ RESPONSIVE ============================================================ */
@media (max-width: 1100px) {
  :root { --section-pad: 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-image-wrap { display: none; }
  .sobre-inner { grid-template-columns: 1fr; gap: 56px; }
  .sobre-images { display: none; }
  .curso-inner { grid-template-columns: 1fr; gap: 48px; }
  .dif-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-sidebar { position: static; }
}
@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .dif-item { padding: 28px 24px; }
  .dif-item:nth-child(odd) { border-right: none; }
  .dif-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .dif-item:last-child { border-bottom: none; }
  .sobre-values { grid-template-columns: 1fr; }
  .servico-card { min-width: calc(100% - 0px); flex: 0 0 100%; }
  .depoimento-card { min-width: 100%; flex: 0 0 100%; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .cta-trust { gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; }
  .ad-item { flex: 0 0 300px; }
  .curso-difs { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  #whatsapp-float { bottom: 20px; right: 20px; }
  .whatsapp-tooltip { display: none; }
}
