:root {
      --rose:      #C4957A;
      --rose-dark: #9E6E5A;
      --rose-pale: #F5ECE6;
      --rose-mid:  #DDB89E;
      --charcoal:  #1E1A18;
      --dark:      #2C2420;
      --gray:      #6B6460;
      --ivory:     #FDFAF7;
      --cream:     #F7F1EB;
      --white:     #FFFFFF;
      --green:     #25D366;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: 'Nunito', sans-serif; background: var(--ivory); color: var(--charcoal); overflow-x: hidden; }

    /* ─── STICKY HEADER ─── */
    .sticky-bar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      background: var(--charcoal);
      display: flex; align-items: center; justify-content: space-between;
      padding: .7rem 5%;
      box-shadow: 0 2px 20px rgba(0,0,0,.3);
    }
    .sticky-name {
      font-family: 'Playfair Display', serif;
      font-size: 1rem; color: var(--white); font-weight: 400;
      letter-spacing: .02em;
    }
    .sticky-name span { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--rose-mid); display: block; margin-top: .1rem; }
    .sticky-cta {
      background: var(--green); color: #fff;
      padding: .55rem 1.3rem; border-radius: 50px;
      font-size: .78rem; font-weight: 600; letter-spacing: .04em;
      text-decoration: none; white-space: nowrap;
      box-shadow: 0 4px 16px rgba(37,211,102,.4);
      transition: transform .2s, box-shadow .2s;
      display: flex; align-items: center; gap: .4rem;
    }
    .sticky-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.5); }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: grid; grid-template-columns: 1fr 1fr;
      padding-top: 52px;
      background: var(--cream);
      position: relative; overflow: hidden;
    }
    .hero::after {
      content: '';
      position: absolute; top: 0; right: 0;
      width: 50%; height: 100%;
      background: linear-gradient(135deg, rgba(196,149,122,.12) 0%, rgba(196,149,122,.04) 100%);
      pointer-events: none;
    }

    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: 5% 4% 5% 7%;
      position: relative; z-index: 2;
    }

    .hero-tag {
      display: inline-flex; align-items: center; gap: .5rem;
      background: var(--rose-pale); color: var(--rose-dark);
      padding: .35rem .9rem; border-radius: 50px;
      font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
      margin-bottom: 1.8rem; width: fit-content;
    }

    .hero-left h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 4vw, 3.8rem);
      font-weight: 700; line-height: 1.12; color: var(--charcoal);
      margin-bottom: 1.2rem;
    }
    .hero-left h1 em {
      font-style: italic; color: var(--rose);
      display: block;
    }

    .hero-promise {
      font-size: 1.05rem; line-height: 1.75; color: var(--gray);
      font-weight: 300; max-width: 430px; margin-bottom: 2.2rem;
    }

    .hero-cta-group { display: flex; flex-direction: column; gap: .85rem; max-width: 340px; }

    .btn-wa {
      display: flex; align-items: center; justify-content: center; gap: .6rem;
      background: var(--green); color: #fff;
      padding: 1rem 1.8rem; border-radius: 50px;
      font-size: .95rem; font-weight: 700; letter-spacing: .04em;
      text-decoration: none;
      box-shadow: 0 6px 24px rgba(37,211,102,.35);
      transition: transform .2s, box-shadow .2s;
    }
    .btn-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,.45); }

    .btn-call {
      display: flex; align-items: center; justify-content: center; gap: .6rem;
      background: transparent; color: var(--charcoal);
      padding: .9rem 1.8rem; border-radius: 50px;
      font-size: .88rem; font-weight: 600; letter-spacing: .04em;
      text-decoration: none;
      border: 2px solid rgba(30,26,24,.2);
      transition: all .2s;
    }
    .btn-call:hover { border-color: var(--rose); color: var(--rose); }

    .hero-trust {
      display: flex; gap: 1.5rem; margin-top: 2.5rem;
      padding-top: 1.8rem; border-top: 1px solid rgba(196,149,122,.2);
      flex-wrap: wrap;
    }
    .trust-pill {
      display: flex; align-items: center; gap: .4rem;
      font-size: .75rem; font-weight: 600; color: var(--gray);
    }
    .trust-pill .dot {
      width: 6px; height: 6px; border-radius: 50%; background: var(--rose); flex-shrink: 0;
    }

    /* Hero right - photo */
    .hero-right {
      position: relative; overflow: hidden;
    }
    .hero-photo {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top;
      display: block; min-height: 600px;
    }
    .hero-photo-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to right, var(--cream) 0%, transparent 20%),
                  linear-gradient(to top, rgba(30,26,24,.3) 0%, transparent 40%);
    }

    /* Floating badge */
    .hero-float-badge {
      position: absolute; bottom: 2.5rem; left: -1rem; z-index: 10;
      background: white; border-radius: 12px;
      padding: 1rem 1.4rem;
      box-shadow: 0 12px 40px rgba(0,0,0,.14);
      border-left: 3px solid var(--rose);
      animation: floatUp 5s ease-in-out infinite;
    }
    @keyframes floatUp { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
    .hero-float-badge .badge-stars { color: #F59E0B; font-size: .8rem; margin-bottom: .25rem; }
    .hero-float-badge .badge-text { font-size: .78rem; font-weight: 600; color: var(--charcoal); }
    .hero-float-badge .badge-sub { font-size: .65rem; color: var(--gray); margin-top: .1rem; }

    .hero-float-cro {
      position: absolute; top: 2rem; right: 1.5rem; z-index: 10;
      background: var(--rose); color: white;
      padding: .7rem 1rem; border-radius: 10px; text-align: center;
      box-shadow: 0 8px 24px rgba(196,149,122,.4);
      animation: floatUp 6s ease-in-out infinite reverse;
    }
    .hero-float-cro strong { font-family: 'Playfair Display', serif; font-size: 1rem; display: block; }
    .hero-float-cro span { font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; opacity: .9; }

    /* ─── URGENCY STRIP ─── */
    .urgency {
      background: var(--rose); padding: 1rem 5%;
      display: flex; align-items: center; justify-content: center; gap: 1rem;
      flex-wrap: wrap;
    }
    .urgency-text {
      font-size: .88rem; font-weight: 600; color: white; text-align: center;
    }
    .urgency-cta {
      background: white; color: var(--rose-dark);
      padding: .5rem 1.3rem; border-radius: 50px;
      font-size: .78rem; font-weight: 700; text-decoration: none;
      white-space: nowrap; transition: transform .2s;
    }
    .urgency-cta:hover { transform: scale(1.04); }

    /* ─── PROBLEMA (pain) ─── */
    .problema {
      padding: 5rem 5%;
      background: var(--charcoal);
      text-align: center;
    }
    .problema-tag {
      font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--rose-mid); margin-bottom: 1rem;
      display: flex; align-items: center; justify-content: center; gap: .6rem;
    }
    .problema-tag::before, .problema-tag::after { content: ''; display: block; width: 30px; height: 1px; background: var(--rose-mid); }
    .problema h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700;
      color: var(--ivory); margin-bottom: 1rem; line-height: 1.2;
    }
    .problema h2 em { font-style: italic; color: var(--rose-mid); }
    .problema p { font-size: .97rem; color: rgba(255,255,255,.55); max-width: 560px; margin: 0 auto 3rem; line-height: 1.85; font-weight: 300; }

    .sinais-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; max-width: 800px; margin: 0 auto 2.5rem;
    }
    .sinal {
      background: rgba(255,255,255,.05); border: 1px solid rgba(196,149,122,.2);
      border-radius: 10px; padding: 1.2rem 1rem; text-align: center;
      transition: background .25s, border-color .25s;
    }
    .sinal:hover { background: rgba(196,149,122,.1); border-color: var(--rose); }
    .sinal-icon { font-size: 1.5rem; margin-bottom: .5rem; }
    .sinal-text { font-size: .82rem; color: rgba(255,255,255,.7); font-weight: 400; line-height: 1.4; }

    /* ─── SOLUÇÃO (sobre + foto clínica) ─── */
    .solucao {
      padding: 5rem 5%;
      display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: center;
      max-width: 1200px; margin: 0 auto;
    }

    .solucao-content .tag {
      font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--rose); display: flex; align-items: center; gap: .5rem; margin-bottom: .8rem;
    }
    .solucao-content .tag::after { content:''; display:block; width:30px; height:1px; background:var(--rose); }

    .solucao-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 2.8vw, 2.6rem); font-weight: 700; line-height: 1.2;
      color: var(--charcoal); margin-bottom: 1.2rem;
    }
    .solucao-content h2 em { font-style: italic; color: var(--rose); }

    .solucao-text { font-size: .95rem; line-height: 1.85; color: var(--gray); font-weight: 300; margin-bottom: 1rem; }

    .credentials { display: flex; flex-direction: column; gap: .65rem; margin: 1.5rem 0; }
    .cred {
      display: flex; align-items: center; gap: .75rem;
      font-size: .88rem; color: var(--charcoal); font-weight: 500;
    }
    .cred-icon {
      width: 32px; height: 32px; border-radius: 8px;
      background: var(--rose-pale); display: flex; align-items: center; justify-content: center;
      font-size: .9rem; flex-shrink: 0;
    }

    .solucao-photo {
      position: relative;
    }
    .solucao-img-wrap {
      width: 100%; aspect-ratio: 3/4; border-radius: 16px; overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,.12);
    }
    .solucao-img-wrap img { width:100%; height:100%; object-fit:cover; object-position: center top; display:block; }
    .solucao-deco {
      position: absolute; top: 1rem; left: 1rem; right: -1rem; bottom: -1rem;
      border: 1px solid var(--rose-mid); border-radius: 16px; z-index: -1;
    }
    .solucao-stat {
      position: absolute; bottom: 2rem; right: -1.5rem;
      background: var(--rose); color: white;
      padding: .9rem 1.2rem; border-radius: 12px;
      box-shadow: 0 10px 30px rgba(196,149,122,.4); text-align: center;
    }
    .solucao-stat strong { font-family:'Playfair Display',serif; font-size:1.6rem; display:block; line-height:1; }
    .solucao-stat span { font-size:.6rem; letter-spacing:.1em; text-transform:uppercase; opacity:.9; }

    /* ─── TECNOLOGIA ─── */
    .tecnologia {
      background: var(--cream); padding: 5rem 5%;
    }
    .tec-header { text-align: center; margin-bottom: 3.5rem; }
    .tec-header .tag {
      font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--rose); display: flex; align-items: center; justify-content: center; gap: .5rem; margin-bottom: .8rem;
    }
    .tec-header .tag::before, .tec-header .tag::after { content:''; display:block; width:30px; height:1px; background:var(--rose); }
    .tec-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 2.8vw, 2.5rem); font-weight: 700; color: var(--charcoal); line-height: 1.2;
    }
    .tec-header h2 em { font-style: italic; color: var(--rose); }

    .tec-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1100px; margin: 0 auto; }

    .tec-photo-wrap {
      border-radius: 16px; overflow: hidden;
      aspect-ratio: 4/5; box-shadow: 0 20px 60px rgba(0,0,0,.13);
    }
    .tec-photo-wrap img { width:100%; height:100%; object-fit:cover; object-position: center top; display:block; }

    .tec-list { display: flex; flex-direction: column; gap: 1rem; }
    .tec-item {
      display: flex; gap: 1rem; align-items: flex-start;
      background: white; padding: 1.2rem 1.4rem; border-radius: 12px;
      box-shadow: 0 2px 16px rgba(0,0,0,.05);
      border-left: 3px solid var(--rose);
      transition: transform .2s, box-shadow .2s;
    }
    .tec-item:hover { transform: translateX(4px); box-shadow: 0 4px 24px rgba(0,0,0,.09); }
    .tec-item-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
    .tec-item-title { font-size: .92rem; font-weight: 700; color: var(--charcoal); margin-bottom: .2rem; }
    .tec-item-desc { font-size: .8rem; color: var(--gray); line-height: 1.6; font-weight: 300; }

    /* ─── DEPOIMENTOS ─── */
    .depoimentos {
      padding: 5rem 5%; background: var(--ivory);
    }
    .dep-header { text-align: center; margin-bottom: 3rem; }
    .dep-header .tag {
      font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--rose); display: flex; align-items: center; justify-content: center; gap: .5rem; margin-bottom: .8rem;
    }
    .dep-header .tag::before, .dep-header .tag::after { content:''; display:block; width:30px; height:1px; background:var(--rose); }
    .dep-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700; color: var(--charcoal);
    }
    .dep-header h2 em { font-style: italic; color: var(--rose); }

    .dep-google-bar {
      display: flex; align-items: center; justify-content: center; gap: .8rem;
      margin-bottom: 2.5rem;
    }
    .dep-google-bar .g-stars { color: #F59E0B; font-size: 1.1rem; letter-spacing: .1rem; }
    .dep-google-bar .g-text { font-size: .82rem; font-weight: 600; color: var(--gray); }

    .dep-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }

    .dep-card {
      background: white; border-radius: 14px; padding: 1.8rem;
      box-shadow: 0 2px 20px rgba(0,0,0,.06);
      transition: transform .25s, box-shadow .25s;
      position: relative;
    }
    .dep-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }

    .dep-google-logo {
      position: absolute; top: 1.2rem; right: 1.2rem;
      display: flex; gap: 2px;
    }
    .dep-card-stars { color: #F59E0B; font-size: .85rem; margin-bottom: .6rem; }
    .dep-card-text {
      font-size: .9rem; line-height: 1.8; color: var(--gray); font-style: italic; font-weight: 300;
      margin-bottom: 1.4rem;
    }
    .dep-card-text::before { content: '"'; font-family: 'Playfair Display',serif; font-size: 1.8rem; color: var(--rose-mid); line-height: 0; vertical-align: -0.4em; margin-right: .2rem; }
    .dep-footer { display: flex; align-items: center; gap: .7rem; border-top: 1px solid var(--cream); padding-top: 1rem; }
    .dep-avatar {
      width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display',serif; font-size: .95rem; font-weight: 700; color: white;
    }
    .dep-name { font-size: .85rem; font-weight: 700; color: var(--charcoal); }
    .dep-source { font-size: .65rem; color: var(--gray); margin-top: .1rem; }

    /* ─── CTA FINAL ─── */
    .cta-final {
      background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark) 100%);
      padding: 5.5rem 5%; text-align: center; position: relative; overflow: hidden;
    }
    .cta-final::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(196,149,122,.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-deco {
      font-family: 'Playfair Display', serif; font-size: 10rem; font-weight: 700; font-style: italic;
      color: rgba(255,255,255,.04); position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      white-space: nowrap; pointer-events: none;
    }
    .cta-final .tag {
      font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--rose-mid); display: flex; align-items: center; justify-content: center; gap: .5rem;
      margin-bottom: .8rem;
    }
    .cta-final .tag::before, .cta-final .tag::after { content:''; display:block; width:30px; height:1px; background:var(--rose-mid); }
    .cta-final h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 700; color: white;
      margin-bottom: 1rem; line-height: 1.2;
    }
    .cta-final h2 em { font-style: italic; color: var(--rose-mid); }
    .cta-final p { color: rgba(255,255,255,.6); max-width: 480px; margin: 0 auto 2.5rem; font-weight: 300; line-height: 1.8; }
    .cta-btns {
      display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2;
    }
    .btn-wa-lg {
      display: flex; align-items: center; gap: .6rem;
      background: var(--green); color: white;
      padding: 1.1rem 2.2rem; border-radius: 50px;
      font-size: .95rem; font-weight: 700; letter-spacing: .04em; text-decoration: none;
      box-shadow: 0 8px 28px rgba(37,211,102,.4);
      transition: transform .2s, box-shadow .2s;
    }
    .btn-wa-lg:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(37,211,102,.5); }
    .btn-insta {
      display: flex; align-items: center; gap: .6rem;
      background: transparent; color: white;
      padding: 1.1rem 2.2rem; border-radius: 50px;
      font-size: .95rem; font-weight: 600; text-decoration: none;
      border: 2px solid rgba(255,255,255,.3);
      transition: all .2s;
    }
    .btn-insta:hover { border-color: var(--rose-mid); color: var(--rose-mid); }

    /* ─── FOOTER ─── */
    footer {
      background: #111;
      padding: 2rem 5%;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    }
    .footer-name {
      font-family: 'Playfair Display', serif; font-size: 1rem; color: rgba(255,255,255,.6); font-weight: 400;
    }
    .footer-cro { font-size: .72rem; color: rgba(255,255,255,.3); }

    /* ─── WA FLOAT ─── */
    .wa-float {
      position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
      width: 58px; height: 58px; border-radius: 50%;
      background: var(--green); color: white;
      display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(37,211,102,.45);
      animation: waPulse 2.5s ease-in-out infinite;
      transition: transform .2s;
    }
    .wa-float:hover { transform: scale(1.1); }
    @keyframes waPulse {
      0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
      50% { box-shadow: 0 4px 36px rgba(37,211,102,.7); }
    }

    /* ─── ANIMATIONS ─── */
    .reveal { opacity: 0; transform: translateY(24px); 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; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .hero, .solucao, .tec-wrap { grid-template-columns: 1fr; }
      .hero-right { height: 360px; order: -1; }
      .hero-float-badge, .hero-float-cro { display: none; }
      .solucao { gap: 2.5rem; }
      .solucao-photo { display: none; }
      .dep-grid { grid-template-columns: 1fr; max-width: 480px; }
    }
    @media (max-width: 640px) {
      .sticky-bar { padding: .6rem 4%; }
      .hero-left { padding: 2.5rem 4% 3rem; }
      .sinais-grid { grid-template-columns: 1fr 1fr; }
      .tec-photo-wrap { display: none; }
      .cta-deco { font-size: 4rem; }
    }