:root {
    --nude: #DBC2B4;
    --pearl: #F7F3F0;
    --taupe: #8C7B75;
    --bronze: #A67C52;
    --deep: #1E1714;
    --cream: #EFE7DF;
    --gold: #C9A870;
    --gold-light: #E0C898;
    --warm-white: #FAF7F4;
    --terra-pale: #F0E4D8;
    --terra-rich: #8F5B42;
    --section-pad: clamp(80px, 10vw, 140px);
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--warm-white);
    color: var(--deep);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }

  /* ——— CUSTOM CURSOR ——— */
  .cursor {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
  }
  .cursor-dot {
    width: 8px; height: 8px;
    background: var(--terra-rich);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    transition: transform 0.1s ease, background 0.2s;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid var(--terra-rich);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    transition: transform 0.25s ease, width 0.25s, height 0.25s, border-color 0.2s;
    opacity: 0.6;
  }
  body:not(:hover) .cursor { opacity: 0; }

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

  /* ——— TYPOGRAPHY ——— */
  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.1;
  }
  .display {
    font-size: clamp(52px, 8vw, 110px);
    letter-spacing: -0.02em;
    line-height: 0.95;
  }
  .headline {
    font-size: clamp(34px, 5vw, 64px);
    letter-spacing: -0.01em;
  }
  .subheadline {
    font-size: clamp(22px, 3vw, 38px);
    font-style: italic;
    color: var(--bronze);
  }
  p {
    line-height: 1.8;
    font-size: clamp(15px, 1.3vw, 17px);
    color: var(--taupe);
  }
  .lead {
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.9;
    color: var(--taupe);
    font-weight: 400;
  }

  /* ——— GOLD LINE DIVIDER ——— */
  .gold-line {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
  }
  .gold-line.left { margin: 0; }

  /* ——— NAV ——— */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 28px 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.5s, padding 0.4s, backdrop-filter 0.5s;
  }
  nav.scrolled {
    background: rgba(250, 247, 244, 0.92);
    backdrop-filter: blur(14px);
    padding: 18px 6vw;
    border-bottom: 1px solid rgba(201, 168, 112, 0.15);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--warm-white);
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
  }
  nav.scrolled .nav-logo { color: var(--deep); }
  .nav-logo span { color: var(--gold); }
  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }
  .nav-links a {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warm-white);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
  }
  nav.scrolled .nav-links a { color: var(--taupe); }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--gold-light); }
  nav.scrolled .nav-links a:hover { color: var(--bronze); }
  .nav-links a:hover::after { width: 100%; }
  
  .nav-cta {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warm-white);
    text-decoration: none;
    border: 1px solid var(--warm-white);
    padding: 10px 22px;
    border-radius: 40px;
    transition: all 0.3s;
    font-family: 'Jost', sans-serif;
  }
  nav.scrolled .nav-cta { color: var(--gold); border-color: var(--gold); }
  .nav-cta:hover {
    background: var(--warm-white);
    color: var(--deep);
  }
  nav.scrolled .nav-cta:hover {
    background: var(--gold);
    color: var(--warm-white);
  }
  
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--warm-white);
    transition: all 0.3s;
  }
  nav.scrolled .nav-hamburger span { background: var(--deep); }

  /* ——— BUTTONS ——— */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--deep);
    color: var(--warm-white);
    padding: 16px 36px;
    border-radius: 40px; /* Pill shape for organic feel */
    border: 1px solid var(--deep);
    text-decoration: none;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    box-shadow: 0 10px 20px rgba(30,23,20,0.1);
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--terra-rich);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
  }
  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary:hover {
    border-color: var(--terra-rich);
    box-shadow: 0 15px 25px rgba(143,91,66,0.2);
  }
  .btn-primary span { position: relative; z-index: 1; display: flex; align-items: center; gap: 8px;}

  .btn-ghost {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--taupe);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
    font-weight: 500;
  }
  .btn-ghost::after {
    content: '→';
    transition: transform 0.3s;
  }
  .btn-ghost:hover { color: var(--bronze); }
  .btn-ghost:hover::after { transform: translateX(4px); }

  /* ——— INFO BAR ——— */
  .info-bar {
    display: flex;
    justify-content: center;
    gap: 5vw;
    padding: 0 6vw 80px;
    margin-top: -20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
  }
  .info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terra-rich);
    font-weight: 500;
  }
  .info-item svg {
    width: 18px; height: 18px;
    color: var(--gold);
  }

  /* ——— HERO (Inspirado no Spamarin com Borda Orgânica e Círculo) ——— */
  .hero-container {
    background: var(--deep);
    border-bottom-right-radius: clamp(100px, 20vw, 300px); /* Massive bottom right radius */
    padding-bottom: 80px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
  }
  
  .hero {
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Slightly larger right side for the circle */
    position: relative;
    padding-top: 100px; /* Space for nav */
  }
  
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8vh 6vw 10vh;
    position: relative;
    z-index: 3;
  }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
  }
  .hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold-light);
  }
  .hero h1 {
    margin-bottom: 32px;
    color: var(--warm-white); /* White text on dark bg */
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold-light);
    display: block;
  }
  .hero-desc {
    max-width: 420px;
    margin-bottom: 48px;
    font-size: 16px;
    color: var(--cream);
  }
  .hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .hero .btn-primary {
    background: var(--warm-white);
    color: var(--deep);
    border-color: var(--warm-white);
  }
  .hero .btn-primary::before { background: var(--gold-light); }
  .hero .btn-primary:hover { color: var(--deep); border-color: var(--gold-light); }
  
  .hero .btn-ghost { color: var(--cream); }
  .hero .btn-ghost:hover { color: var(--gold-light); }

  /* Hero visual - Large Circle */
  .hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  .hero-circle {
    width: clamp(300px, 45vw, 700px);
    height: clamp(300px, 45vw, 700px);
    background: transparent;
    position: absolute;
    right: 5vw;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  /* Model Photo */
  .hero-model-placeholder {
    width: 85%;
    height: 110%; /* Makes the image break out of the top of the circle slightly */
    background-color: rgba(143, 91, 66, 0.15); /* Fallback */
    background-image: url('assets/hero_feminine.png');
    background-size: cover;
    background-position: center bottom;
    border-radius: 200px 200px 0 0; /* Dome shape to fit the circle but break out */
    position: absolute;
    bottom: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  }
  
  .hero-scroll-hint {
    position: absolute;
    bottom: 50px;
    left: 6vw;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .hero-scroll-hint span {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
  }
  .scroll-track-h {
    width: 120px;
    height: 1px;
    background: rgba(224, 200, 152, 0.2);
    position: relative;
    overflow: hidden;
  }
  .scroll-dot-h {
    position: absolute;
    top: 0; left: 0;
    width: 30px;
    height: 1px;
    background: var(--gold-light);
    animation: scrollSlide 2.5s cubic-bezier(0.76, 0, 0.24, 1) infinite;
  }
  @keyframes scrollSlide {
    0% { transform: translateX(-30px); }
    100% { transform: translateX(120px); }
  }

  /* ——— SECTION BASE ——— */
  section { padding: var(--section-pad) 6vw; }
  .section-label {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--terra-rich);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
  }
  .section-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--terra-rich);
  }

  /* ——— SOBRE / ESSÊNCIA (Imagens Sobrepostas & Bordas Folha) ——— */
  .sobre {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
  }
  
  .sobre-visual-layered {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
  }
  
  /* Main large image */
  .layered-img-main {
    width: 80%;
    height: 85%;
    background-color: var(--nude);
    background-size: cover;
    background-position: center;
    border-radius: 120px 0 120px 0; /* Organic leaf shape */
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  
  /* Smaller overlapping image */
  .layered-img-small {
    width: 45%;
    height: 40%;
    background-color: var(--cream);
    background-size: cover;
    background-position: center;
    border: 8px solid var(--warm-white);
    border-radius: 0 60px 0 60px; /* Opposite leaf shape */
    position: absolute;
    bottom: 5%;
    right: 0;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }

  .sobre-text { position: relative; }
  .sobre-text .headline { margin-bottom: 28px; color: var(--deep); }
  .sobre-text .lead { margin-bottom: 24px; }
  
  .sobre-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  .pillar {
    padding: 24px;
    border: 1px solid rgba(143,91,66,0.15);
    background: var(--cream);
    border-radius: 20px 0 20px 0; /* Slight leaf shape for pillars too */
    transition: border-color 0.3s, transform 0.3s;
  }
  .pillar:hover {
    border-color: var(--terra-rich);
    transform: translateY(-3px);
  }
  .pillar-icon {
    margin-bottom: 15px;
    color: var(--terra-rich);
  }
  .pillar h4 {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    color: var(--terra-rich);
    margin-bottom: 6px;
  }
  .pillar p { font-size: 14px; line-height: 1.8; }

  /* ——— DESENVOLVIMENTO PESSOAL (Com forma fluida) ——— */
  .desenvolvimento {
    background: var(--terra-pale);
    position: relative;
    overflow: hidden;
    border-top-left-radius: clamp(80px, 15vw, 200px); /* Organic top-left curve */
    margin-top: 40px;
  }
  .desenvolvimento .sobre {
    grid-template-columns: 0.9fr 1.1fr; /* Text on left, img on right */
  }
  
  .desenvolvimento .layered-img-main {
    left: auto; right: 0;
    border-radius: 0 120px 0 120px;
  }
  .desenvolvimento .layered-img-small {
    right: auto; left: 0;
    border-radius: 60px 0 60px 0;
    border-color: var(--terra-pale); /* Match section bg */
  }

  /* ——— SERVIÇOS (Inspirado no Grid de Cards com Caixa Sobreposta) ——— */
  .servicos { background: var(--warm-white); }
  .servicos-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .servicos-header .section-label { justify-content: center; }
  .servicos-header .section-label::before { display: none; }
  .servicos-header .headline { margin-bottom: 20px; }
  
  .servicos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 cards por linha */
    gap: 40px;
  }
  
  .pkg-card {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 40px; /* Space for the overlapping box */
  }
  
  .pkg-img {
    width: 100%;
    height: 350px;
    background-color: var(--nude);
    background-size: cover;
    background-position: center;
    border-radius: 20px 20px 0 0;
  }
  
  .pkg-content {
    background: var(--cream);
    padding: 40px 30px;
    border-radius: 20px 20px 0 20px; /* Organic box shape */
    box-shadow: 0 -20px 40px rgba(0,0,0,0.03);
    margin-top: -60px; /* This pulls the box up over the image! */
    position: relative;
    z-index: 2;
    width: 90%;
    margin-left: 5%; /* Center it slightly */
    transition: transform 0.3s ease;
  }
  
  .pkg-card:hover .pkg-content {
    transform: translateY(-5px);
  }
  
  .pkg-icon {
    width: 40px; height: 40px;
    background: var(--warm-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terra-rich);
    margin-top: -60px; /* Pull icon up over the border */
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  .pkg-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--cream);
    color: var(--terra-rich);
    border: 1px solid rgba(143,91,66,0.15);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 20px 0 20px 0;
    font-weight: 500;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .pkg-content h3 {
    font-size: 22px;
    color: var(--deep);
    margin-bottom: 4px;
  }
  .pkg-duration {
    display: block;
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    font-weight: 500;
  }
  .pkg-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--taupe);
    margin-bottom: 20px;
  }
  
  .pkg-link {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terra-rich);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: gap 0.3s;
  }
  .pkg-link:hover { gap: 16px; }

  /* ——— MANIFESTO BAND (Separador elegante) ——— */
  .manifesto {
    background: var(--deep);
    padding: 80px 6vw;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 100px 0 100px; /* Flowing shape */
    margin: 60px 6vw;
  }
  .manifesto::before, .manifesto::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143,91,66,0.15), transparent 70%);
  }
  .manifesto::before { top: -60px; left: 10%; }
  .manifesto::after { bottom: -60px; right: 15%; }
  .manifesto-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
  .manifesto blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3.5vw, 46px);
    font-style: italic;
    font-weight: 300;
    color: var(--cream);
    line-height: 1.4;
    margin-bottom: 32px;
  }
  .manifesto blockquote em { color: var(--gold-light); font-style: normal; }
  .manifesto cite {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taupe);
    font-style: normal;
  }

  /* ——— EXPERIÊNCIA (Layout Dinâmico) ——— */
  .experiencia {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 100px;
    align-items: start;
  }
  .experiencia-sticky { position: sticky; top: 120px; }
  .experiencia-sticky .headline { margin-bottom: 24px; }
  .experiencia-sticky .lead { margin-bottom: 32px; }
  .experiencia-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
  .exp-item {
    padding: 28px 0;
    border-bottom: 1px solid rgba(143,91,66,0.15);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    opacity: 0.4;
    transition: opacity 0.4s;
  }
  .exp-item:first-child { border-top: 1px solid rgba(143,91,66,0.15); }
  .exp-item:hover { opacity: 1; }
  .exp-icon {
    margin-top: 2px;
    color: var(--terra-rich);
  }
  .exp-item h4 {
    font-size: 16px;
    font-weight: 500;
    font-family: 'Jost', sans-serif;
    color: var(--deep);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
  }
  .exp-item p { font-size: 14px; }
  .experiencia-visuals {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .exp-visual-card {
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 40px 0 40px 0;
  }
  .exp-visual-card:nth-child(2) { border-radius: 0 40px 0 40px; }
  
  .card-bg {
    position: absolute;
    inset: -15px; /* Evita bordas brancas do blur */
    background-size: cover;
    background-position: center;
    filter: blur(6px);
    z-index: 0;
    transition: transform 0.5s ease;
  }
  .exp-visual-card:hover .card-bg {
    transform: scale(1.05);
  }
  .card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 23, 20, 0.65); /* Overlay escuro para contraste */
    z-index: 0;
  }
  
  .exp-visual-card h3 {
    font-size: clamp(20px, 2.5vw, 30px);
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    color: var(--warm-white);
  }
  .exp-visual-card:nth-child(2) h3 { color: var(--gold-light); }
  .exp-visual-card p {
    font-size: 14px;
    position: relative;
    z-index: 1;
    max-width: 360px;
    color: var(--cream);
  }

  /* ——— AGENDAMENTO & FOOTER WRAPPER (Curva Orgânica) ——— */
  .bottom-wrapper {
    background: var(--deep);
    border-top-left-radius: clamp(100px, 20vw, 300px); /* Massive top left curve like Spamarin footer */
    padding-top: 60px;
    margin-top: 60px;
  }

  .agendamento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .agendar-left {
    padding: var(--section-pad) 6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }
  .agendar-left .section-label { color: var(--gold-light); }
  .agendar-left .section-label::before { background: var(--gold-light); }
  .agendar-left .headline { color: var(--cream); margin-bottom: 20px; }
  .agendar-left .lead { color: var(--taupe); max-width: 420px; margin-bottom: 40px; }
  
  .agendar-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .agendar-opt {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,112,0.2);
    border-radius: 20px 0 20px 0;
    text-decoration: none;
    color: var(--pearl);
    transition: all 0.3s;
  }
  .agendar-opt:hover {
    background: var(--gold);
    color: var(--deep);
    border-color: var(--gold);
  }
  .agendar-opt:hover .opt-icon { color: var(--deep); }
  .agendar-opt:hover .opt-text span { color: rgba(30,23,20,0.8); }
  .agendar-opt:hover .opt-arrow { color: var(--deep); }
  .opt-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: color 0.3s; color: var(--gold-light); }
  .opt-text { flex: 1; }
  .opt-text strong {
    display: block;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 3px;
  }
  .opt-text span {
    font-size: 13px;
    color: var(--taupe);
    transition: color 0.3s;
  }
  .opt-arrow { font-size: 18px; transition: color 0.3s; }

  .agendar-right {
    padding: var(--section-pad) 6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .agendar-right .bg-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 200px;
    font-weight: 300;
    color: rgba(255,255,255,0.02);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -0.04em;
  }
  .agendar-right .section-label { margin-bottom: 24px; color: var(--gold-light); }
  .agendar-right .headline { color: var(--cream); margin-bottom: 20px; }
  .agendar-right p { color: var(--taupe); max-width: 400px; margin-bottom: 40px; }
  .info-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
  .info-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: var(--pearl);
  }
  .info-list li::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }

  footer {
    border-top: 1px solid rgba(201,168,112,0.1);
    padding: 60px 6vw 40px;
  }
  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand .nav-logo {
    display: inline-block;
    font-size: 20px;
    color: var(--cream);
    margin-bottom: 20px;
  }
  .footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--taupe);
    max-width: 320px;
    margin-bottom: 28px;
  }
  .footer-social { display: flex; gap: 14px; }
  .social-btn {
    width: 38px; height: 38px;
    border: 1px solid rgba(201,168,112,0.2);
    border-radius: 10px 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--taupe);
    text-decoration: none;
    transition: all 0.3s;
  }
  .social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    border-radius: 0 10px 0 10px;
  }
  .footer-col h5 {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a {
    font-size: 14px;
    color: var(--taupe);
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 0.03em;
  }
  .footer-col ul a:hover { color: var(--pearl); }
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(201,168,112,0.08);
  }
  .footer-bottom p {
    font-size: 12px;
    color: rgba(140,123,117,0.5);
    letter-spacing: 0.08em;
  }
  .footer-bottom a {
    font-size: 12px;
    color: rgba(140,123,117,0.5);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-bottom a:hover { color: var(--gold); }

  /* ——— FLOATING CTA ——— */
  .float-cta {
    position: fixed;
    bottom: 36px;
    right: 36px;
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
  }
  .float-cta.visible { opacity: 1; transform: translateY(0); }
  .float-cta-btn {
    background: var(--deep);
    color: var(--gold-light);
    border: 1px solid var(--gold);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 13px 22px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    font-weight: 500;
    border-radius: 10px 0 10px 0;
  }
  .float-cta-btn:hover {
    background: var(--gold);
    color: var(--deep);
    border-radius: 0 10px 0 10px;
  }

  /* ——— FADE IN ANIMATIONS ——— */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ——— MOBILE ——— */
  @media (max-width: 900px) {
    .info-bar {
      flex-direction: column;
      gap: 20px;
      align-items: flex-start;
      padding-top: 20px;
      padding-bottom: 60px;
    }
    .hero-container {
      border-bottom-right-radius: 80px;
      padding-bottom: 40px;
    }
    .hero {
      grid-template-columns: 1fr;
      min-height: auto;
      padding-top: 120px;
    }
    .hero-circle {
      position: relative;
      right: auto;
      top: auto;
      transform: none;
      width: 90vw;
      height: 90vw;
      max-width: 450px;
      max-height: 450px;
      margin: 40px auto;
    }
    .sobre, .agendamento, .desenvolvimento .sobre { grid-template-columns: 1fr; }
    .sobre-visual-layered { height: 400px; }
    
    .servicos-grid { grid-template-columns: 1fr; }
    .experiencia { grid-template-columns: 1fr; gap: 50px; }
    .experiencia-sticky { position: static; }
    
    .bottom-wrapper {
      border-top-left-radius: 80px;
    }
    
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-cta { display: none; }
    .float-cta { bottom: 20px; right: 20px; }
    .hero-scroll-hint { display: none; }
    .cursor { display: none; }
    body { cursor: auto; }
  }

  /* Mobile nav overlay */
  .mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--deep);
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s;
  }
  .mobile-nav a:hover { color: var(--gold); }
  .mobile-nav-close {
    position: absolute;
    top: 28px; right: 6vw;
    font-size: 28px;
    color: var(--taupe);
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s;
  }
  .mobile-nav-close:hover { color: var(--pearl); }
/* ��� EXIT POPUP ��� */
.exit-popup {
  position: fixed;
  inset: 0;
  background: rgba(30, 23, 20, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.exit-popup.visible {
  opacity: 1;
  pointer-events: all;
}
.exit-popup-content {
  background: var(--cream);
  padding: 60px 50px;
  max-width: 580px;
  width: 90%;
  border-radius: 40px 0 40px 0;
  position: relative;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.exit-popup.visible .exit-popup-content {
  transform: translateY(0);
}
.exit-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--taupe);
  cursor: pointer;
  transition: color 0.3s;
}
.exit-close:hover { color: var(--deep); }
.exit-popup-content h3 {
  font-size: clamp(28px, 4vw, 36px);
  color: var(--deep);
  margin-bottom: 16px;
}
.exit-popup-content p {
  font-size: 17px;
  color: var(--taupe);
  margin-bottom: 34px;
  line-height: 1.6;
}
