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

  :root {
    --cream: #F7F4EF;
    --warm-white: #FDFCFA;
    --charcoal: #1C1C1A;
    --mid: #6B6860;
    --light: #B8B5AF;
    --accent: #8C7355;
    --accent-light: #C9B89A;
    --border: rgba(28,28,26,0.10);
    --border-mid: rgba(28,28,26,0.18);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ──────────────────── NAV ──────────────────── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6vw;
    height: 72px;
    background: rgba(253,252,250,0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
  }

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

  .logo-mark {
    width: 38px;
    height: 38px;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
  }

  .logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--charcoal);
  }

  .logo-sub {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--mid);
    transition: color 0.2s;
  }

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

  .nav-cta {
    padding: 9px 22px;
    border: 1px solid var(--charcoal);
    border-radius: 0;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
  }

  .nav-cta:hover {
    background: var(--charcoal);
    color: var(--warm-white);
  }

  /* ──────────────────── HERO ──────────────────── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 72px;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 6vw 80px 6vw;
  }

  .hero-eyebrow {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--accent);
  }

  .hero-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(46px, 5.5vw, 72px);
    font-weight: 300;
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--charcoal);
    margin-bottom: 32px;
  }

  .hero-heading em {
    font-style: italic;
    color: var(--accent);
  }

  .hero-body {
    font-size: 15px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 48px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--charcoal);
    color: var(--warm-white);
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
  }

  .btn-primary:hover {
    background: var(--accent);
    transform: translateY(-1px);
  }

  .btn-ghost {
    font-size: 13px;
    font-weight: 300;
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 1px solid var(--border-mid);
    padding-bottom: 2px;
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-ghost:hover {
    color: var(--accent);
    border-color: var(--accent);
  }

  .hero-right {
    position: relative;
    background: var(--cream);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Decorative geometric lines in hero */
  .hero-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .hero-stat-card {
    position: relative;
    z-index: 2;
    background: var(--warm-white);
    border: 1px solid var(--border-mid);
    padding: 40px 44px;
    max-width: 340px;
    animation: fadeUp 0.9s ease 0.4s both;
  }

  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    line-height: 1;
    color: var(--charcoal);
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
  }

  .stat-note {
    font-size: 13px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.6;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
  }

  /* ──────────────────── STRIP ──────────────────── */
  .strip {
    background: var(--charcoal);
    padding: 18px 6vw;
    display: flex;
    align-items: center;
    gap: 48px;
    overflow: hidden;
  }

  .strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }

  .strip-dot {
    width: 3px;
    height: 3px;
    background: var(--accent-light);
    border-radius: 50%;
  }

  /* ──────────────────── SERVICES ──────────────────── */
  .section {
    padding: 100px 6vw;
  }

  .section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 72px;
    align-items: end;
  }

  .section-eyebrow {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--accent);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--charcoal);
  }

  .section-title em { font-style: italic; }

  .section-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.85;
    max-width: 360px;
    align-self: end;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
  }

  .service-card {
    background: var(--warm-white);
    padding: 44px 36px;
    transition: background 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    width: 0;
    background: var(--accent);
    transition: width 0.4s ease;
  }

  .service-card:hover {
    background: var(--cream);
  }

  .service-card:hover::after {
    width: 100%;
  }

  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: var(--light);
    margin-bottom: 28px;
  }

  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 14px;
    line-height: 1.25;
  }

  .service-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.75;
  }

  /* ──────────────────── ABOUT ──────────────────── */
  .about {
    background: var(--cream);
    padding: 100px 6vw;
  }

  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
  }

  .about-visual {
    position: relative;
  }

  .about-img-frame {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
  }

  /* Placeholder for photo — textured dark rectangle with initials */
  .about-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #2a2926 0%, #1C1C1A 100%);
  }

  .about-initials {
    font-family: 'Cormorant Garamond', serif;
    font-size: 88px;
    font-weight: 300;
    color: rgba(255,255,255,0.10);
    letter-spacing: 0.08em;
  }

  .about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--warm-white);
    border: 1px solid var(--border-mid);
    padding: 20px 24px;
    min-width: 160px;
  }

  .badge-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1;
  }

  .badge-lbl {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: 4px;
  }

  .about-content { }

  .about-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--charcoal);
    margin-bottom: 32px;
  }

  .about-body em {
    font-style: italic;
    color: var(--accent);
  }

  .about-details {
    font-size: 13px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 44px;
  }

  .about-credentials {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
  }

  .credential {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }

  .cred-name {
    font-weight: 400;
    color: var(--charcoal);
  }

  .cred-val {
    font-weight: 300;
    color: var(--mid);
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  /* ──────────────────── PROCESS ──────────────────── */
  .process {
    padding: 100px 6vw;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 22px;
    left: calc(10% + 12px);
    right: calc(10% + 12px);
    height: 1px;
    background: var(--border-mid);
    z-index: 0;
  }

  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
  }

  .step-dot {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-mid);
    background: var(--warm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--accent);
    transition: background 0.25s, border-color 0.25s;
  }

  .step:hover .step-dot {
    background: var(--charcoal);
    color: var(--warm-white);
    border-color: var(--charcoal);
  }

  .step-label {
    font-size: 13px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
  }

  .step-sub {
    font-size: 11px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.6;
  }

  /* ──────────────────── HONORÁRIOS ──────────────────── */
  .fees {
    background: var(--cream);
    padding: 100px 6vw;
  }

  .fees-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    margin-top: 64px;
  }

  .fee-card {
    background: var(--warm-white);
    padding: 48px 44px;
  }

  .fee-card.featured {
    background: var(--charcoal);
  }

  .fee-type {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 20px;
  }

  .fee-card.featured .fee-type {
    color: rgba(255,255,255,0.45);
  }

  .fee-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1;
    margin-bottom: 6px;
  }

  .fee-card.featured .fee-value {
    color: var(--warm-white);
  }

  .fee-range {
    font-size: 12px;
    font-weight: 300;
    color: var(--mid);
    margin-bottom: 28px;
  }

  .fee-card.featured .fee-range {
    color: rgba(255,255,255,0.4);
  }

  .fee-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 12px;
  }

  .fee-card.featured .fee-title {
    color: var(--warm-white);
  }

  .fee-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.75;
  }

  .fee-card.featured .fee-desc {
    color: rgba(255,255,255,0.5);
  }

  .fee-list {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .fee-list li {
    font-size: 13px;
    font-weight: 300;
    color: var(--mid);
    display: flex;
    align-items: baseline;
    gap: 10px;
  }

  .fee-card.featured .fee-list li {
    color: rgba(255,255,255,0.55);
  }

  .fee-list li::before {
    content: '—';
    color: var(--accent-light);
    flex-shrink: 0;
  }

  /* ──────────────────── CTA ──────────────────── */
  .cta-section {
    padding: 120px 6vw;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(140,115,85,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
  }

  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--charcoal);
    max-width: 700px;
    margin: 0 auto 48px;
  }

  .cta-title em {
    font-style: italic;
    color: var(--accent);
  }

  .cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
  }

  .cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    background: var(--charcoal);
    color: var(--warm-white);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s;
  }

  .cta-whatsapp:hover {
    background: var(--accent);
  }

  .cta-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    text-decoration: none;
  }

  .cta-phone-label {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--light);
  }

  .cta-phone-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 0.04em;
  }

  /* ──────────────────── FOOTER ──────────────────── */
  footer {
    background: var(--charcoal);
    padding: 64px 6vw 40px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 36px;
  }

  .footer-brand .logo-name {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
  }

  .footer-brand .logo-sub {
    color: rgba(255,255,255,0.3);
  }

  .footer-tagline {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    margin-top: 20px;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
  }

  .footer-col-title {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
  }

  .footer-links a:hover {
    color: var(--accent-light);
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.04em;
  }

  .footer-oab {
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
  }

  /* ──────────────────── ANIMATIONS ──────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-left > * {
    animation: fadeUp 0.8s ease both;
  }
  .hero-left .hero-eyebrow  { animation-delay: 0.05s; }
  .hero-left .hero-heading  { animation-delay: 0.15s; }
  .hero-left .hero-body     { animation-delay: 0.25s; }
  .hero-left .hero-actions  { animation-delay: 0.35s; }

  /* ──────────────────── RESPONSIVE ──────────────────── */
  @media (max-width: 900px) {
    nav { padding: 0 5vw; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { display: none; }
    .hero-left { padding: 60px 5vw; min-height: 80vh; }
    .section-header { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .about-inner { grid-template-columns: 1fr; }
    .about-img-frame { aspect-ratio: 3/2; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 36px; }
    .process-steps::before { display: none; }
    .fees-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  }

  /* ──────────────────── FORM ──────────────────── */
  .form-wrapper {
    max-width: 540px;
    margin: 0 auto;
    text-align: left;
  }
  .form-card {
    background: var(--warm-white);
    border: 1px solid var(--border-mid);
    padding: 40px;
    margin-top: 40px;
  }
  .form-row { margin-bottom: 20px; }
  .form-label { display: block; font-size: 13px; font-weight: 400; margin-bottom: 8px; color: var(--charcoal); }
  .form-input {
    width: 100%; padding: 14px;
    border: 1px solid var(--border-mid);
    border-radius: 0;
    font-size: 14px; font-family: 'Jost', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
  }
  .form-input:focus { outline: none; border-color: var(--accent); }
  .form-submit {
    width: 100%; padding: 16px;
    background: var(--charcoal); color: var(--warm-white);
    font-weight: 400; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
    border: none; border-radius: 0;
    cursor: pointer; font-family: 'Jost', sans-serif;
    margin-top: 10px;
    transition: background 0.25s;
  }
  .form-submit:hover { background: var(--accent); }
  .form-note { font-size: 12px; color: var(--mid); text-align: center; margin-top: 16px; }
  .success-msg {
    display: none;
    background: var(--warm-white);
    border: 1px solid var(--accent);
    padding: 30px;
    text-align: center;
  }
  .success-msg p { font-size: 16px; font-family: 'Cormorant Garamond', serif; color: var(--charcoal); margin-bottom: 8px;}
  .success-msg small { font-size: 13px; color: var(--mid); }
