:root {
    --bege:        #F5EFE6;
    --bege-escuro: #E8DECE;
    --bege-medio:  #D4C5B0;
    --ouro:        #C9A84C;
    --ouro-claro:  #E2C47A;
    --ouro-escuro: #9A7430;
    --marrom:      #5C4A30;
    --texto:       #3A2E20;
    --branco:      #FDFAF5;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { background-color: var(--bege); color: var(--texto); font-family: 'Jost', sans-serif; font-weight: 300; overflow-x: hidden; }

  .divider { display: flex; align-items: center; gap: 1rem; margin: 2rem auto; max-width: 260px; }
  .divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--ouro), transparent); }
  .divider-diamond { width: 8px; height: 8px; background: var(--ouro); transform: rotate(45deg); flex-shrink: 0; }

  /* ── HERO ── */
  .hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 3rem 1.5rem 2rem; overflow: hidden; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 70%), var(--bege); }
  .hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.07) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }

  .hero-photo-wrap { position: relative; width: 170px; height: 170px; margin-bottom: 1.8rem; animation: fadeUp 1s ease both; }
  .hero-photo-wrap::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; background: conic-gradient(var(--ouro-claro), var(--ouro-escuro), var(--ouro-claro), var(--ouro-escuro), var(--ouro-claro)); animation: spinSlow 8s linear infinite; }
  .hero-photo-wrap::after { content: ''; position: absolute; inset: -2px; border-radius: 50%; background: var(--bege); }
  .hero-photo { position: relative; z-index: 1; width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: top center; display: block; }

  .hero-tag { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--ouro); margin-bottom: 0.6rem; animation: fadeUp 1s 0.15s ease both; }
  .hero-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 8vw, 3.6rem); font-weight: 300; line-height: 1; color: var(--marrom); text-align: center; animation: fadeUp 1s 0.25s ease both; }
  .hero-name em { font-style: italic; color: var(--ouro-escuro); }
  .hero-subtitle { margin-top: 0.8rem; font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ouro); animation: fadeUp 1s 0.35s ease both; text-align: center; max-width: 280px; line-height: 1.8; }
  .hero-bio { margin-top: 1.6rem; max-width: 360px; text-align: center; font-size: 0.95rem; line-height: 1.8; color: var(--marrom); opacity: 0.85; animation: fadeUp 1s 0.45s ease both; }
  .scroll-hint { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; animation: fadeUp 1s 0.6s ease both; }
  .scroll-hint span { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ouro); }
  .scroll-dot { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--ouro), transparent); animation: scrollPulse 2s ease-in-out infinite; }

  /* ── SEÇÕES ── */
  section { padding: 4rem 1.5rem; }
  .section-label { text-align: center; font-size: 0.6rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--ouro); margin-bottom: 0.5rem; }
  .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem, 6vw, 2.8rem); font-weight: 400; text-align: center; color: var(--marrom); line-height: 1.1; }
  .section-title em { font-style: italic; color: var(--ouro-escuro); }

  /* ── SOBRE ── */
  .sobre { background: var(--branco); position: relative; }
  .sobre::before { content: ''; display: block; height: 2px; background: linear-gradient(90deg, transparent, var(--ouro), transparent); position: absolute; top: 0; left: 10%; right: 10%; }
  .sobre-content { max-width: 520px; margin: 0 auto; text-align: center; }
  .sobre-text { margin-top: 1.8rem; font-size: 0.98rem; line-height: 1.9; color: var(--marrom); opacity: 0.85; }
  .sobre-stats { display: flex; justify-content: center; gap: 2.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
  .stat { text-align: center; }
  .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 500; color: var(--ouro-escuro); line-height: 1; }
  .stat-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--marrom); opacity: 0.7; margin-top: 0.3rem; }

  /* ── CURSOS ── */
  .cursos { background: var(--bege); }
  .cursos-grid { display: flex; flex-direction: column; gap: 1.5rem; max-width: 540px; margin: 2.5rem auto 0; }
  .curso-card { background: var(--branco); border: 1px solid rgba(201,168,76,0.25); border-radius: 2px; overflow: hidden; position: relative; transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .curso-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(154,116,48,0.15); }
  .curso-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: linear-gradient(to bottom, var(--ouro-claro), var(--ouro-escuro)); }
  .curso-header { padding: 1.4rem 1.5rem 0.8rem 1.8rem; cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
  .curso-nome { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 500; color: var(--marrom); }
  .curso-nivel { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ouro); margin-top: 0.25rem; }
  .curso-toggle { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--ouro); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; transition: background 0.3s, transform 0.3s; color: var(--ouro); font-size: 0.9rem; }
  .curso-card.open .curso-toggle { background: var(--ouro); color: var(--branco); transform: rotate(45deg); }
  .curso-body { max-height: 0; overflow: hidden; transition: max-height 0.5s ease, padding 0.3s ease; padding: 0 1.8rem; }
  .curso-card.open .curso-body { max-height: 700px; padding-bottom: 1.5rem; }
  .curso-desc { font-size: 0.9rem; line-height: 1.8; color: var(--marrom); opacity: 0.8; margin-bottom: 1rem; }
  .curso-items-title { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ouro-escuro); margin-bottom: 0.6rem; }
  .curso-items { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
  .curso-items li { font-size: 0.88rem; color: var(--marrom); opacity: 0.8; display: flex; align-items: center; gap: 0.6rem; }
  .curso-items li::before { content: '◆'; font-size: 0.4rem; color: var(--ouro); flex-shrink: 0; }
  .curso-procedimentos { background: rgba(201,168,76,0.08); border-left: 2px solid var(--ouro-claro); padding: 0.8rem 1rem; border-radius: 0 2px 2px 0; margin-bottom: 1.2rem; }
  .curso-procedimentos p { font-size: 0.82rem; line-height: 1.7; color: var(--marrom); opacity: 0.85; }
  .btn-curso { display: flex; align-items: center; justify-content: center; gap: 0.6rem; width: 100%; padding: 0.85rem 1rem; background: linear-gradient(135deg, var(--ouro-claro), var(--ouro-escuro)); color: var(--branco); font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: opacity 0.2s, transform 0.2s; }
  .btn-curso:hover { opacity: 0.9; transform: scale(1.01); }

  /* ── SERVIÇOS ── */
  .servicos { background: linear-gradient(to bottom, var(--branco), var(--bege)); }
  .servicos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 520px; margin: 2.5rem auto 0; }
  .servico-card { background: var(--branco); border: 1px solid rgba(201,168,76,0.2); border-radius: 2px; padding: 1.4rem 1rem; text-align: center; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
  .servico-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(154,116,48,0.12); }
  .servico-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--ouro), transparent); }
  .servico-icon { font-size: 1.6rem; margin-bottom: 0.7rem; display: block; }
  .servico-nome { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 500; color: var(--marrom); margin-bottom: 0.25rem; line-height: 1.2; }
  .servico-desc { font-size: 0.75rem; color: var(--marrom); opacity: 0.65; line-height: 1.5; margin-bottom: 0.8rem; }
  .btn-agendar { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.5rem 0.9rem; border: 1px solid var(--ouro); color: var(--ouro-escuro); font-family: 'Jost', sans-serif; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; background: transparent; transition: background 0.25s, color 0.25s; cursor: pointer; }
  .btn-agendar:hover { background: var(--ouro); color: var(--branco); }

  /* ── SERVIÇO ÚNICO ── */
  .servico-unico { background: var(--branco); border: 1px solid rgba(201,168,76,0.25); border-radius: 2px; max-width: 400px; margin: 0 auto; padding: 2.5rem 2rem; text-align: center; position: relative; overflow: hidden; }
  .servico-unico::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--ouro), transparent); }
  .servico-unico .servico-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
  .servico-unico .servico-nome { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500; color: var(--marrom); margin-bottom: 0.6rem; }
  .servico-unico .servico-desc { font-size: 0.82rem; color: var(--marrom); opacity: 0.65; line-height: 1.8; margin-bottom: 1.5rem; }
  .btn-agendar-grande { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 0.9rem 2rem; background: linear-gradient(135deg, var(--ouro-claro), var(--ouro-escuro)); color: var(--branco); font-family: 'Jost', sans-serif; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; text-decoration: none; transition: opacity 0.2s, transform 0.2s; }
  .btn-agendar-grande:hover { opacity: 0.9; transform: scale(1.02); }

  /* ── CTA FINAL ── */
  .cta { background: var(--marrom); padding: 4rem 1.5rem; text-align: center; position: relative; overflow: hidden; }
  .cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,0.2) 0%, transparent 70%); }
  .cta-content { position: relative; z-index: 1; }
  .cta-label { font-size: 0.6rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--ouro-claro); margin-bottom: 0.7rem; }
  .cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 6vw, 2.6rem); font-weight: 300; color: var(--branco); line-height: 1.2; margin-bottom: 1rem; }
  .cta-title em { font-style: italic; color: var(--ouro-claro); }
  .cta-text { font-size: 0.9rem; color: rgba(253,250,245,0.7); margin-bottom: 2rem; }
  .cta-btns { display: flex; flex-direction: column; gap: 0.8rem; align-items: center; }
  .btn-whats { display: inline-flex; align-items: center; justify-content: center; gap: 0.7rem; padding: 1rem 2rem; font-family: 'Jost', sans-serif; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: transform 0.25s, box-shadow 0.25s; min-width: 250px; }
  .btn-whats:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
  .btn-whats-primary { background: linear-gradient(135deg, var(--ouro-claro), var(--ouro-escuro)); color: var(--branco); font-weight: 500; }
  .btn-whats-secondary { background: transparent; border: 1px solid rgba(201,168,76,0.5); color: var(--ouro-claro); }
  .btn-whats-secondary:hover { border-color: var(--ouro-claro); }

  footer { background: #2A1F10; padding: 1.5rem; text-align: center; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(201,168,76,0.5); }

  /* ── ANIMAÇÕES ── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  @keyframes scrollPulse { 0%, 100% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.4; transform: scaleY(0.7); } }
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }