/* ─── DESIGN SYSTEM TOKENS — OralUnic × Koode Studio ─── */
  :root {
    --brand-primary:    #540247;
    --brand-secondary:  #7F0C72;
    --brand-accent:     #19D3C5;
    --brand-white:      #FFFFFF;
    --brand-gray-cl:    #F0EEF2;
    --brand-gray-md:    #5D5664;
    --brand-dark:       #18141A;

    --accent-dim:       rgba(25,211,197,0.12);
    --accent-glow:      rgba(25,211,197,0.25);
    --primary-dim:      rgba(84,2,71,0.6);
    --white-dim:        rgba(255,255,255,0.08);
    --white-dim2:       rgba(255,255,255,0.15);
    --white-dim3:       rgba(255,255,255,0.55);

    /* Spacing tokens */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 48px;
    --space-6: 64px;
    --space-7: 96px;

    /* Radius tokens */
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-xl:   32px;
    --radius-full: 100px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--brand-white);
    background: var(--brand-primary);
    overflow-x: hidden;
  }

  /* ─── TYPOGRAPHY SCALE ─── */
  .type-display { font-size: 52px; font-weight: 300; line-height: 1.1; }
  .type-h1      { font-size: 36px; font-weight: 600; line-height: 1.15; }
  .type-h2      { font-size: 28px; font-weight: 500; line-height: 1.2; }
  .type-body    { font-size: 18px; font-weight: 400; line-height: 1.7; }
  .type-cta     { font-size: 16px; font-weight: 600; }
  .type-caption { font-size: 12px; font-weight: 400; }

  /* ─── LAYOUT ─── */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
  }

  section { padding: var(--space-6) 0; }

  /* ─── BRAND ACCENT LINE (assinatura visual) ─── */
  .accent-line {
    width: 48px;
    height: 3px;
    background: var(--brand-accent);
    border-radius: 2px;
  }

  /* ─── EYEBROW ─── */
  .eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: var(--space-2);
  }

  /* ─── BUTTONS — CTA sempre Verde ou Branco, nunca Vinho ─── */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    letter-spacing: 0.01em;
  }

  .btn-accent {
    background: var(--brand-accent);
    color: var(--brand-dark);
    box-shadow: 0 4px 24px rgba(25,211,197,0.35);
  }
  .btn-accent:hover {
    background: #1fedde;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(25,211,197,0.5);
    filter: brightness(1.08);
  }

  .btn-white {
    background: var(--brand-white);
    color: var(--brand-primary);
  }
  .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.2);
  }

  .btn-outline {
    background: transparent;
    color: var(--brand-white);
    border: 1.5px solid rgba(255,255,255,0.35);
  }
  .btn-outline:hover {
    border-color: var(--brand-accent);
    color: var(--brand-accent);
  }

  .btn-sm { padding: 10px 22px; font-size: 14px; }
  .btn-lg { padding: 18px 40px; font-size: 17px; }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(84,2,71,0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--white-dim);
  }

  /* Green signature line on nav */
  nav::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand-accent);
    opacity: 0.6;
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .nav-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
  }

  .logo-name {
    font-size: 21px;
    font-weight: 300;
    color: var(--brand-white);
    letter-spacing: 0.02em;
    line-height: 1;
  }

  .logo-name span {
    font-weight: 600;
    color: var(--brand-accent);
  }

  .logo-city {
    font-size: 10px;
    color: var(--brand-gray-md);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    gap: var(--space-4);
    list-style: none;
  }

  .nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--white-dim3);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.01em;
  }

  .nav-links a:hover { color: var(--brand-accent); }

  .nav-cta { display: flex; gap: var(--space-2); }

  /* ─── HERO ─── */
  .hero {
    min-height: auto;
    display: flex;
    align-items: center;
    background: var(--brand-primary);
    padding: 120px 0 var(--space-6);
    position: relative;
    overflow: hidden;
  }

  /* Radial glow accent */
  .hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(127,12,114,0.5) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: 30%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(25,211,197,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    background: var(--accent-dim);
    border: 1px solid rgba(25,211,197,0.3);
    border-radius: var(--radius-full);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--brand-accent);
    margin-bottom: var(--space-3);
    letter-spacing: 0.02em;
  }

  .badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--brand-accent);
    animation: blink 2s ease-in-out infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .hero-headline {
    font-size: 58px;
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--brand-white);
    margin-bottom: var(--space-3);
  }

  .hero-headline strong {
    font-weight: 600;
    color: var(--brand-white);
  }

  .hero-headline .accent-word {
    color: var(--brand-accent);
  }

  .hero-sub {
    font-size: 17px;
    font-weight: 400;
    color: var(--white-dim3);
    max-width: 460px;
    margin-bottom: var(--space-5);
    line-height: 1.75;
  }

  .hero-ctas {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-bottom: var(--space-5);
  }

  .hero-trust {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    padding-top: var(--space-3);
    border-top: 1px solid var(--white-dim);
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: 13px;
    color: var(--brand-gray-md);
  }

  .trust-check {
    color: var(--brand-accent);
    font-size: 14px;
    font-weight: 600;
  }

  /* Hero visual */
  .hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }

  .hero-img-card {
    background: rgba(127,12,114,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-img-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(127,12,114,0.4), rgba(25,211,197,0.06));
  }

  /* Green signature line on card */
  .hero-img-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand-accent);
  }

  .hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    position: relative;
    z-index: 1;
    border-radius: inherit;
  }

  .hero-float {
    position: absolute;
    background: rgba(24,20,26,0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    z-index: 10;
  }

  .hero-float.f-1 { bottom: var(--space-4); left: -28px; }
  .hero-float.f-2 { top: var(--space-4); right: -28px; }

  .float-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--accent-dim);
    border: 1px solid rgba(25,211,197,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .float-val {
    font-size: 17px;
    font-weight: 600;
    color: var(--brand-white);
    line-height: 1;
    margin-bottom: 2px;
  }

  .float-label {
    font-size: 11px;
    color: var(--brand-gray-md);
    letter-spacing: 0.03em;
  }

  /* ─── STATS BAND ─── */
  .stats-band {
    background: var(--brand-white);
    border-top: 3px solid var(--brand-accent);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 0;
  }

  .stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-item {
    padding: var(--space-4) var(--space-3);
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.07);
  }

  .stat-item:last-child { border-right: none; }

  .stat-val {
    font-size: 38px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 6px;
    color: var(--brand-primary);
  }

  .stat-label {
    font-size: 11px;
    color: var(--brand-gray-md);
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  /* ─── WHITE SECTION ─── */
  .section-white {
    background: var(--brand-white);
    color: var(--brand-dark);
  }

  .section-white .eyebrow { color: var(--brand-secondary); }
  .section-white .eyebrow .accent-line { background: var(--brand-secondary); }

  .section-gray {
    background: var(--brand-gray-cl);
    color: var(--brand-dark);
  }

  /* ─── SECTION HEADER ─── */
  .section-hd { margin-bottom: var(--space-6); }

  .section-hd h2 {
    font-size: 38px;
    font-weight: 600;
    color: inherit;
    margin-bottom: var(--space-2);
    letter-spacing: -0.01em;
    line-height: 1.15;
  }

  .section-white .section-hd h2,
  .section-gray .section-hd h2 { color: var(--brand-dark); }

  .section-hd p {
    font-size: 17px;
    color: var(--white-dim3);
    max-width: 540px;
    line-height: 1.7;
  }

  .section-white .section-hd p,
  .section-gray .section-hd p { color: #5D5664; }

  .section-white .eyebrow,
  .section-gray .eyebrow { color: var(--brand-secondary); }

  /* ─── PROBLEMAS GRID ─── */
  .problemas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
  }

  .problema-card {
    background: var(--brand-white);
    border: 1px solid rgba(84,2,71,0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    position: relative;
    overflow: hidden;
    transition: all 0.25s ease;
  }

  .problema-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
  }

  .problema-card:hover::before { transform: scaleX(1); }

  .problema-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(84,2,71,0.15);
  }

  .p-icon { font-size: 30px; margin-bottom: var(--space-2); display: block; }

  .problema-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: var(--space-1);
  }

  .problema-card p {
    font-size: 14px;
    color: var(--brand-gray-md);
    line-height: 1.65;
    margin-bottom: var(--space-2);
  }

  .p-solucao {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-accent);
    letter-spacing: 0.02em;
  }

  /* ─── SERVIÇOS ─── */
  .servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
  }

  .servicos-grid.outros {
    grid-template-columns: repeat(4, 1fr);
    margin-top: var(--space-3);
  }

  .servico-card {
    background: var(--brand-white);
    border: 1px solid rgba(84,2,71,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.25s ease;
    position: relative;
  }

  .servico-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .servico-card:hover::after { transform: scaleX(1); }

  .servico-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(84,2,71,0.12);
    border-color: rgba(25,211,197,0.3);
  }

  .servico-top {
    padding: var(--space-4) var(--space-4) var(--space-3);
    border-bottom: 1px solid rgba(84,2,71,0.08);
  }

  .servico-emoji { font-size: 36px; display: block; margin-bottom: var(--space-2); }

  .servico-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 6px;
  }

  .servico-tag {
    display: inline-block;
    background: rgba(25,211,197,0.1);
    color: var(--brand-secondary);
    border: 1px solid rgba(25,211,197,0.25);
    border-radius: var(--radius-sm);
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .servico-bot {
    padding: var(--space-3) var(--space-4);
  }

  .servico-card p {
    font-size: 14px;
    color: var(--brand-gray-md);
    line-height: 1.65;
  }

  /* ─── COMO FUNCIONA — sticky scroll ─── */
  .como-funciona-wrapper {
    position: relative;
    height: 350vh;
  }

  .como-funciona-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    background: var(--brand-white);
  }

  .como-funciona-sticky .section-hd {
    margin-bottom: var(--space-5);
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
    position: relative;
  }

  /* Track line background */
  .steps-track {
    position: absolute;
    top: 29px;
    left: calc(12.5% + 18px);
    right: calc(12.5% + 18px);
    height: 2px;
    background: rgba(84,2,71,0.1);
    z-index: 0;
    border-radius: 2px;
  }

  /* Animated fill line */
  .steps-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0%;
    background: var(--brand-accent);
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .step {
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0.3;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .step.active {
    opacity: 1;
    transform: translateY(0);
  }

  .step-num {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto var(--space-3);
    position: relative;
    background: #F3EFF6;
    border: 2px solid rgba(84,2,71,0.15);
    color: var(--brand-primary);
    z-index: 1;
    transition: background 0.45s ease, color 0.45s ease,
                border-color 0.45s ease, box-shadow 0.45s ease;
  }

  .step.active .step-num {
    background: var(--brand-accent);
    color: var(--brand-dark);
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 10px rgba(25,211,197,0.12);
  }

  .step h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 8px;
  }

  .step p {
    font-size: 13px;
    color: var(--brand-gray-md);
    line-height: 1.65;
    padding: 0 8px;
  }

  .steps-counter {
    text-align: center;
    margin-top: var(--space-5);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-gray-md);
  }

  .steps-counter strong {
    color: var(--brand-accent);
    font-weight: 600;
  }

  /* ─── DEPOIMENTOS — CAROUSEL ─── */
  .carousel-wrap {
    position: relative;
    overflow: hidden;
    margin: 0 -8px;
  }

  .carousel-track {
    display: flex;
    gap: var(--space-3);
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 8px 8px 24px;
  }

  .dep {
    flex: 0 0 calc((100% - 2 * var(--space-3)) / 3);
    background: var(--brand-white);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(84,2,71,0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
  }

  .dep::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand-accent);
  }

  .dep:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(84,2,71,0.12);
  }

  .dep-stars { color: #F5C518; font-size: 15px; letter-spacing: 2px; margin-bottom: var(--space-2); }

  .dep-text {
    font-size: 15px;
    color: var(--brand-dark);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: var(--space-3);
    font-weight: 400;
    flex: 1;
  }

  .dep-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }

  .dep-av {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--brand-gray-cl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 2px solid rgba(84,2,71,0.1);
  }

  .dep-name { font-size: 14px; font-weight: 600; color: var(--brand-dark); }
  .dep-info { font-size: 12px; color: var(--brand-gray-md); }

  /* Dots */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-4);
  }

  .carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(84,2,71,0.15);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
  }

  .carousel-dot.active {
    background: var(--brand-accent);
    transform: scale(1.3);
  }

  /* ─── FAQ ─── */
  .faq-wrap { max-width: 740px; margin: 0 auto; }

  .faq-item {
    border-bottom: 1px solid rgba(84,2,71,0.1);
    overflow: hidden;
  }

  .faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--brand-dark);
    gap: var(--space-3);
    transition: color 0.2s;
  }

  .faq-q:hover { color: var(--brand-primary); }

  .faq-icon {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1.5px solid rgba(84,2,71,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    color: var(--brand-gray-md);
    flex-shrink: 0;
    transition: all 0.3s;
  }

  .faq-item.open .faq-icon {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: var(--brand-dark);
    font-weight: 700;
    transform: rotate(45deg);
  }

  .faq-a {
    display: none;
    padding: 0 0 var(--space-3);
    font-size: 15px;
    color: var(--brand-gray-md);
    line-height: 1.75;
    max-width: 620px;
  }

  .faq-item.open .faq-a { display: block; }

  /* ─── CTA FINAL ─── */
  .cta-final {
    background: var(--brand-accent);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  .cta-final::before {
    content: '';
    position: absolute;
    top: -180px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.18) 0%, transparent 65%);
    pointer-events: none;
  }

  .cta-final h2 {
    font-size: 46px;
    font-weight: 300;
    color: var(--brand-dark);
    margin-bottom: var(--space-3);
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
  }

  .cta-final h2 strong { font-weight: 600; }
  .cta-final h2 .ac { color: var(--brand-primary); }

  .cta-final .sub {
    font-size: 17px;
    color: rgba(24,20,26,0.65);
    max-width: 500px;
    margin: 0 auto var(--space-5);
    line-height: 1.7;
    position: relative;
    z-index: 1;
  }

  .cta-btns {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-3);
    position: relative;
    z-index: 1;
  }

  .btn-dark {
    background: var(--brand-dark);
    color: var(--brand-white);
  }
  .btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

  .cta-note {
    font-size: 12px;
    color: rgba(24,20,26,0.5);
    letter-spacing: 0.03em;
    position: relative;
    z-index: 1;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--brand-primary);
    border-top: 3px solid var(--brand-accent);
    padding: var(--space-5) 0 var(--space-4);
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-5);
  }

  .footer-logo-name {
    font-size: 22px;
    font-weight: 300;
    color: var(--brand-white);
    margin-bottom: 2px;
  }

  .footer-logo-name span { font-weight: 600; color: var(--brand-accent); }

  .footer-city {
    font-size: 10px;
    color: var(--brand-gray-md);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-3);
  }

  .footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    max-width: 240px;
  }

  .footer-col h3 {
    font-size: 10px;
    font-weight: 600;
    color: var(--brand-gray-md);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-3);
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

  .footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-col ul li a:hover { color: var(--brand-accent); }

  .footer-bottom {
    border-top: 1px solid var(--white-dim);
    padding-top: var(--space-3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-2);
  }

  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }

  .footer-tag {
    font-size: 12px;
    color: var(--brand-accent);
    letter-spacing: 0.05em;
    font-weight: 500;
  }

  /* ─── WHATSAPP FLOAT ─── */
  .wa-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }

  .wa-tooltip {
    background: var(--brand-dark);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    font-size: 13px;
    color: var(--brand-white);
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    animation: fadeInRight 0.4s 2.5s ease forwards;
  }

  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(8px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .wa-btn {
    width: 58px; height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none;
    font-size: 28px;
    transition: all 0.2s;
  }

  .wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  }

  /* ─── IMPLANTE SECTION ─── */
  .implante-section {
    background: var(--brand-primary);
    padding: var(--space-7) 0;
    position: relative;
    overflow: hidden;
  }

  .implante-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(127,12,114,0.5) 0%, transparent 70%);
    pointer-events: none;
  }

  .implante-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .implante-content .eyebrow { color: var(--brand-accent); }

  .implante-content h2 {
    font-size: 38px;
    font-weight: 300;
    color: var(--brand-white);
    margin-bottom: var(--space-3);
    line-height: 1.2;
    letter-spacing: -0.01em;
  }

  .implante-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: var(--space-4);
  }

  .implante-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
  }

  .implante-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
  }

  .il-check {
    width: 26px; height: 26px;
    background: var(--brand-accent);
    color: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .implante-list li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .implante-list li strong {
    font-size: 15px;
    color: var(--brand-white);
    font-weight: 600;
  }

  .implante-list li span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
  }

  .implante-note {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: var(--space-2);
    letter-spacing: 0.02em;
  }

  .implante-visual {
    position: relative;
  }

  .implante-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
  }

  .implante-photo {
    width: 100%;
    height: 640px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-lg);
    border: 3px solid var(--brand-accent);
  }

  .implante-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--brand-white);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  }

  .ib-icon {
    width: 40px; height: 40px;
    background: var(--accent-dim);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  .ib-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1;
  }

  .ib-label {
    font-size: 11px;
    color: var(--brand-gray-md);
    margin-top: 2px;
  }

  /* ─── EQUIPE ─── */
  .equipe-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-6);
    align-items: center;
  }

  .equipe-foto-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
  }

  .equipe-foto-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand-accent);
  }

  .equipe-foto {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .equipe-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(84,2,71,0.1);
  }

  .eq-stat { text-align: center; }

  .eq-val {
    font-size: 28px;
    font-weight: 300;
    color: var(--brand-primary);
    line-height: 1;
    margin-bottom: 4px;
  }

  .eq-label {
    font-size: 11px;
    color: var(--brand-gray-md);
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  /* ─── CTA FIXO MOBILE ─── */
  .mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 998;
    background: var(--brand-white);
    border-top: 1px solid rgba(84,2,71,0.1);
    padding: 12px var(--space-3);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  }

  .mobile-cta-bar .btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
  }

  /* ─── MOBILE ─── */
  @media (max-width: 900px) {
    .container { padding: 0 var(--space-3); }

    .nav-links { display: none; }
    .nav-cta .btn-outline { display: none; }
    .nav-cta .btn-accent { font-size: 13px; padding: 8px 14px; }
    .nav-logo-img { height: 28px; }

    section { padding: var(--space-5) 0; }

    .hero { padding: 100px 0 var(--space-5); min-height: auto; }
    .hero-inner { grid-template-columns: 1fr; gap: var(--space-4); }
    .hero-headline { font-size: 36px; }
    .hero-visual { order: -1; }
    .hero-float.f-1 { left: 0; bottom: var(--space-2); }
    .hero-float.f-2 { right: 0; top: var(--space-2); }

    .stats-inner { grid-template-columns: repeat(2, 1fr); }

    .problemas-grid,
    .servicos-grid,
    .servicos-grid.outros { grid-template-columns: 1fr; }

    /* carousel mobile: 1 card visível */
    .dep { flex: 0 0 100%; }

    .como-funciona-wrapper { height: auto; }
    .como-funciona-sticky { position: relative; height: auto; padding: var(--space-5) 0; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-track { display: none; }
    .step { opacity: 1; transform: none; }
    .step .step-num { background: var(--brand-accent); color: var(--brand-dark); border-color: var(--brand-accent); }
    .steps-counter { display: none; }

    .section-hd h2 { font-size: 28px; }
    .cta-final h2 { font-size: 40px; }

    .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
    .footer-brand { grid-column: span 2; }

    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { flex: none; width: 100%; text-align: center; }
    .cta-btns { flex-direction: column; align-items: center; }
    .cta-btns .btn { width: 100%; max-width: 360px; }

    .implante-inner { grid-template-columns: 1fr; gap: var(--space-5); }
    .implante-visual { order: -1; }
    .implante-photo { height: 420px; }
    .implante-badge { left: 12px; bottom: -16px; }
    .implante-content h2 { font-size: 28px; }

    .equipe-inner { grid-template-columns: 1fr; gap: var(--space-4); }
    .equipe-foto { height: 280px; }
    .equipe-stats { grid-template-columns: repeat(3, 1fr); gap: var(--space-2); }

    .mobile-cta-bar { display: block; }
    body { padding-bottom: 80px; }
  }

  @media (max-width: 480px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .stat-val { font-size: 28px; }
  }

  /* ---- Galeria (slider automático, pausa no hover) ---- */
  .gallery .container{text-align:center}
  .gallery-sub{color:#635c6b;max-width:560px;margin:var(--space-2) auto 0;font-size:18px;line-height:1.6}
  .gallery-viewport{position:relative;overflow:hidden;margin-top:var(--space-5);
    -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
            mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent)}
  .gallery-track{display:flex;gap:16px;width:max-content;animation:galScroll 60s linear infinite}
  .gallery-viewport:hover .gallery-track,.gallery-viewport:focus-within .gallery-track{animation-play-state:paused}
  .gallery-track img{height:300px;width:auto;border-radius:var(--radius-lg);object-fit:cover;display:block;
    flex:0 0 auto;box-shadow:0 12px 32px -14px rgba(84,2,71,.30)}
  @keyframes galScroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
  @media (max-width:640px){.gallery-track img{height:210px}}
  @media (prefers-reduced-motion:reduce){.gallery-track{animation:none}.gallery-viewport{overflow-x:auto;mask-image:none;-webkit-mask-image:none}}

  /* Ícones SVG (substituem emojis) */
  .eico{width:1em;height:1em;display:inline-block;vertical-align:-0.125em;fill:currentColor;flex:0 0 auto}
  .eico-star{fill:#F5C518}
  .p-icon,.servico-emoji,.ib-icon{color:var(--brand-primary)}
  .float-icon{color:var(--brand-accent)}
  .dep-av{color:var(--brand-primary)}
  .dep-av .eico{width:22px;height:22px;vertical-align:middle}
  .il-check .eico{width:14px;height:14px}
  .dep-stars{line-height:1}
  .dep-stars .eico{width:15px;height:15px;vertical-align:middle;margin-right:1px}
  /* a11y: alvos de toque */
  .footer-col ul li a{padding:7px 0;display:inline-block}
  .nav-links a{padding:8px 6px}

  /* Texto muted em fundo ESCURO (nav/hero/implante/footer) precisa ser claro (AA) */
  .logo-city,.trust-item,.float-label{color:rgba(255,255,255,.74)}
  footer .footer-city,footer .footer-col h3{color:rgba(255,255,255,.70)}
  footer .footer-desc,footer .footer-col ul li a{color:rgba(255,255,255,.76)}
  footer .footer-bottom p{color:rgba(255,255,255,.66)}

  /* Badges extras na foto do Dr. Jean */
  .implante-badge-2{top:24px;right:-20px;bottom:auto;left:auto}
  .implante-badge-3{bottom:-20px;right:-20px;top:auto;left:auto}
  @media (max-width:768px){
    .implante-badge{padding:9px 12px;gap:8px;left:6px}
    .implante-badge .ib-icon{width:30px;height:30px}
    .implante-badge .ib-val{font-size:13px}
    .implante-badge .ib-label{font-size:10px}
    .implante-badge-2{top:10px;right:6px;left:auto}
    .implante-badge-3{top:auto;bottom:72px;right:6px;left:auto}
  }
  /* CTA final: botão WhatsApp no roxo da marca (não preto) */
  .cta-final .btn-dark{background:var(--brand-primary)}
  .cta-final .btn-dark:hover{background:var(--brand-secondary)}
  /* Check do Dr Jean: glifo no tom do fundo (roxo); descrições mais legíveis (AA) */
  .il-check .eico{fill:var(--brand-primary)}
  .implante-list li span{color:rgba(255,255,255,.72)}
