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

  :root {
    --cream: #FAF7F2;
    --cream-dark: #F2EDE4;
    --text-dark: #1A1614;
    --text-mid: #4A3F39;
    --text-muted: #8C7B72;
    --rose: #9B6E5E;
    --rose-light: #C4A090;
    --rose-pale: #F0E4DC;
    --sage: #3D5A4C;
    --sage-light: #6B8F7F;
    --sage-pale: #E0EBE5;
    --gold: #B8956A;
    --gold-light: #D4B896;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garant', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
    --transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    padding: 1.25rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
  }
  nav.scrolled {
    background: rgba(250,247,242,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(155,110,94,0.12);
    padding: 0.9rem 2.5rem;
  }
  .nav-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-dark);
    text-decoration: none;
    position: relative;
    z-index: 201;
  }

  .nav-logo-img {
    height: 64px;
    width: auto;
    display: block;
  }

  .nav-logo span { color: var(--rose); }
  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
  }
  .nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--rose); }
  .nav-cta {
    background: var(--sage);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 2px;
  }
  .nav-cta:hover { background: var(--sage-light); color: var(--white) !important; }

  /* ── HAMBURGER ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    position: relative;
    z-index: 201;
  }
  .nav-hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease;
    transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* ── MOBILE MENU DRAWER ── */
  .nav-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 199;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
  }
  .nav-drawer.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  .nav-drawer ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 400px;
    padding: 0 2rem;
  }
  .nav-drawer ul li {
    border-bottom: 1px solid rgba(155,110,94,0.12);
  }
  .nav-drawer ul li:first-child {
    border-top: 1px solid rgba(155,110,94,0.12);
  }
  .nav-drawer ul li a {
    display: block;
    padding: 1.25rem 0;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }
  .nav-drawer ul li a:hover { color: var(--rose); }
  .nav-drawer-cta {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--sage);
    color: var(--white) !important;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
  }
  .nav-drawer-cta:hover { background: var(--sage-light); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero-left {
    background: var(--sage);
    display: flex;
    align-items: flex-end;
    padding: 8rem 4rem 6rem 5rem;
    position: relative;
    overflow: hidden;
  }
  .hero-left::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
  }
  .hero-left::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 50%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
  }
  .hero-content { position: relative; z-index: 1; }
  .hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 1px;
    background: var(--gold-light);
  }
  .hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 4.75rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 0.4rem;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
    display: block;
  }
  .hero-subtitle-name {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
  }
  .hero-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    max-width: 38ch;
    margin-bottom: 3rem;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gold);
    color: var(--white);
    padding: 1rem 2.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
  }
  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
  }
  .btn-primary svg { transition: transform 0.3s; }
  .btn-primary:hover svg { transform: translateX(4px); }

  .hero-right {
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .hero-photo-area {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, var(--cream-dark) 0%, var(--rose-pale) 60%, var(--cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 3rem 4rem;
  }
  .hero-photo-placeholder {
    width: min(340px, 80%);
    aspect-ratio: 3/4;
    border-radius: 4px 80px 4px 80px;
    background: linear-gradient(160deg, var(--rose-pale), var(--cream-dark));
    border: 1px solid rgba(155,110,94,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }
  .hero-photo-placeholder::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(155,110,94,0.15);
  }
  .hero-photo-placeholder::after {
    content: '';
    position: absolute;
    top: calc(15% + 80px);
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 180px;
    border-radius: 80px 80px 0 0;
    background: rgba(155,110,94,0.1);
  }
  .photo-label {
    position: relative;
    z-index: 1;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    letter-spacing: 0.08em;
    background: rgba(250,247,242,0.9);
    padding: 0.6rem 1.25rem;
    border-radius: 2px;
    border: 1px dashed rgba(155,110,94,0.3);
  }
  .hero-stats {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .stat-card {
    background: var(--white);
    border: 1px solid rgba(155,110,94,0.15);
    border-radius: 4px;
    padding: 0.9rem 1.25rem;
    text-align: center;
    min-width: 110px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  }
  .stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--rose);
    line-height: 1;
    margin-bottom: 0.2rem;
  }
  .stat-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    animation: scrollBounce 2s ease-in-out infinite;
  }
  @keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }
  .hero-scroll span {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  }

  /* ── SECTION BASE ── */
  section { padding: 6rem 5rem; }
  .section-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .section-eyebrow::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--rose);
  }
  .section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
  }
  .section-title em {
    font-style: italic;
    color: var(--rose);
  }

  /* ── SOBRE ── */
  .sobre {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .sobre-img {
    position: relative;
  }
  .sobre-img-inner {
    width: min(100%, 400px);
    aspect-ratio: 3/4;
    margin: 0 auto;
    border-radius: 2px 120px 2px 120px;
    background: var(--rose-pale);
    border: 1px solid rgba(155,110,94,0.18);
    overflow: hidden;
    position: relative;
  }
  .sobre-img-inner::before,
  .sobre-img-inner::after { display: none; }
  .sobre-img-badge {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: var(--sage);
    color: var(--white);
    border-radius: 4px;
    padding: 1.25rem 1.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.5;
    box-shadow: 0 8px 30px rgba(61,90,76,0.2);
    z-index: 1;
  }
  .sobre-img-badge strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.2rem;
  }
  .sobre-text p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 1.25rem;
  }
  .sobre-credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
  }
  .credential {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--cream);
    border-radius: 4px;
    border-left: 3px solid var(--rose);
  }
  .credential-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--rose-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--rose);
    font-size: 0.9rem;
  }
  .credential-info strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
  }
  .credential-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
  }

  /* ── ESPECIALIDADES ── */
  .especialidades {
    background: var(--cream);
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .espec-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
  }
  .espec-header-text { max-width: 50ch; }
  .espec-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 40ch;
  }
  .espec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .espec-card {
    background: var(--white);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(155,110,94,0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
  }
  .espec-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--rose);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .espec-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(155,110,94,0.12);
    border-color: rgba(155,110,94,0.25);
  }
  .espec-card:hover::before { transform: scaleX(1); }
  .espec-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: var(--rose-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
  .espec-card h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }
  .espec-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
  }

  /* ── COMO FUNCIONA ── */
  .como-funciona {
    background: var(--sage);
    padding: 7rem 5rem;
    position: relative;
    overflow: hidden;
  }
  .como-funciona::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
  }
  .como-funciona .section-eyebrow { color: var(--gold-light); }
  .como-funciona .section-eyebrow::before { background: var(--gold-light); }
  .como-funciona .section-title { color: var(--white); }
  .como-funciona .section-title em { color: var(--gold-light); }
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(255,255,255,0.15);
    z-index: 0;
  }
  .step {
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(255,255,255,0.15);
    transition: var(--transition);
  }
  .step:hover .step-num { transform: scale(1.1); background: var(--gold-light); }
  .step h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.75rem;
  }
  .step p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
  }

  /* ── DEPOIMENTOS ── */
  .depoimentos {
    background: var(--white);
    padding: 7rem 5rem;
  }
  .dep-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  .dep-header .section-eyebrow { justify-content: center; }
  .dep-header .section-eyebrow::before { display: none; }
  .dep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
  .dep-card {
    background: var(--cream);
    border-radius: 4px;
    padding: 2.5rem;
    border: 1px solid rgba(155,110,94,0.1);
    position: relative;
    transition: var(--transition);
  }
  .dep-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(155,110,94,0.1);
  }
  .dep-quote {
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1;
    color: var(--rose-light);
    margin-bottom: 1rem;
    leading-trim: both;
    text-edge: cap;
  }
  .dep-card p {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.75rem;
  }
  .dep-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }
  .dep-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--rose-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--rose);
    flex-shrink: 0;
  }
  .dep-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
  }
  .dep-info {
    font-size: 0.75rem;
    color: var(--text-muted);
  }
  .dep-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.2rem;
  }

  /* ── CTA ── */
  .cta {
    background: var(--cream-dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
    padding: 7rem 5rem;
    position: relative;
    overflow: hidden;
  }
  .cta::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -5%;
    width: 40%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(155,110,94,0.07);
  }
  .cta-text .section-title { margin-bottom: 1rem; }
  .cta-text p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 2rem;
  }
  .cta-form {
    background: var(--white);
    border-radius: 8px;
    padding: 2.75rem;
    border: 1px solid rgba(155,110,94,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.07);
    position: relative;
    z-index: 1;
  }
  .form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
  }
  .form-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
  }
  .form-group { margin-bottom: 1.25rem; }
  .form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
  }
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(155,110,94,0.2);
    border-radius: 4px;
    background: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus {
    border-color: var(--rose);
    background: var(--white);
  }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .btn-form {
    width: 100%;
    padding: 1rem;
    background: var(--sage);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
  }
  .btn-form:hover {
    background: var(--sage-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(61,90,76,0.25);
  }
  .form-privacy {
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 1rem;
  }

  /* ── ATENDIMENTO ── */
  .atend-divider {
    height: 1px;
    background: var(--rose-light);
    margin: 1.75rem 0;
    opacity: 0.45;
  }
  .atend-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .atend-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
  }
  .atend-info-item svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--rose);
  }
  .atend-map-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(155,110,94,0.4);
    text-underline-offset: 3px;
    transition: color 0.2s;
  }
  .atend-map-link:hover { color: var(--rose); }
  .atend-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--sage);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 1.75rem;
  }
  .atend-wa-btn:hover {
    background: var(--sage-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(61,90,76,0.25);
  }
  .atend-secondary {
    display: flex;
    gap: 2rem;
    margin-top: 0.875rem;
    flex-wrap: wrap;
  }
  .atend-secondary a {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .atend-secondary a:hover { color: var(--rose); }
  .atend-location-card {
    background: var(--sage-pale);
    border-radius: 8px;
    border: 1px solid rgba(61,90,76,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
  }
  .atend-location-card .card-icon {
    color: var(--sage);
    margin-bottom: 1.5rem;
  }
  .atend-location-card .card-building {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }
  .atend-location-card .card-sub {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
  }
  .atend-location-card .card-divider {
    width: 3rem;
    height: 1px;
    background: var(--sage);
    opacity: 0.4;
    margin: 1.25rem 0;
  }
  .atend-location-card .card-line {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.8;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--text-dark);
    padding: 4rem 5rem 2.5rem;
    color: rgba(255,255,255,0.55);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand .nav-logo {
    color: var(--white);
    font-size: 1.35rem;
    display: block;
    margin-bottom: 1rem;
  }
  .footer-brand p {
    font-size: 0.82rem;
    line-height: 1.8;
    max-width: 32ch;
  }
  .footer-col h3 {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.65rem; }
  .footer-col ul li a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--gold-light); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.75rem;
    transition: var(--transition);
  }
  .social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
  }

  /* ── REVEAL ANIMATION ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    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; }

  /* ── RESPONSIVE ── */

  /* Tablet (769–1024px): hero and sobre adapt, nav collapses */
  @media (max-width: 1024px) {
    section { padding: 5rem 3rem; }

    /* Nav */
    nav { padding: 1rem 2rem; }
    nav.scrolled { padding: 0.8rem 2rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-drawer { display: flex; }
    .nav-logo-img { height: 52px; }

    /* Hero: stack vertically, keep photo in reduced form */
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 9rem 3rem 5rem; min-height: 65vh; }
    .hero-right { display: flex; min-height: 55vw; max-height: 480px; }
    .hero-photo-area { padding: 3rem 2rem; }
    .hero-photo-placeholder { max-width: 240px; aspect-ratio: 3/4; }
    .hero-stats {
      bottom: 1.5rem;
      right: 1.5rem;
      gap: 0.5rem;
    }
    .stat-card { padding: 0.65rem 1rem; min-width: 90px; }
    .stat-number { font-size: 1.4rem; }
    .stat-label { font-size: 0.62rem; }

    /* Sobre: stack, keep image in smaller format */
    .sobre { grid-template-columns: 1fr; gap: 3rem; }
    .sobre-img { display: block; }
    .sobre-img-inner { aspect-ratio: 3/4; border-radius: 2px 60px 2px 60px; }
    .sobre-img-badge { right: 0.5rem; bottom: 1rem; }

    /* Grids */
    .espec-grid { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .dep-grid { grid-template-columns: 1fr 1fr; }
    .recon-grid { grid-template-columns: 1fr 1fr; }
    .cta { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .reconhecimento { padding: 5rem 3rem; }
    .faq { padding: 5rem 3rem; }
  }

  /* Mobile (≤640px) */
  @media (max-width: 640px) {
    section { padding: 4rem 1.5rem; }

    /* Hero — Fix 1 */
    .hero-left { padding: 7rem 1.5rem 3.5rem; min-height: auto; }
    .hero-right { max-height: 320px; min-height: 260px; }
    .hero-photo-placeholder { max-width: 180px; }
    .hero-stats { flex-direction: row; bottom: 0.75rem; right: 50%; transform: translateX(50%); gap: 0.4rem; }
    .stat-card { min-width: 75px; padding: 0.45rem 0.65rem; }

    /* Hero text sizes — Fix 5 By CLAUDE
    .hero-desc { font-size: 1rem; }
    .hero-eyebrow { font-size: 0.78rem; }
   */

   /* Hero text sizes — Fix 5 - BY GEMINI*/
    .hero-title {
      font-size: clamp(2.2rem, 9vw, 3rem); /* Reduz o tamanho mínimo para caber em ecrãs pequenos */
      overflow-wrap: break-word;
      word-break: break-word;
      -webkit-hyphens: auto;
      hyphens: auto; /* Hifeniza automaticamente palavras longas para manter a sobriedade visual */
    }

    .hero-desc {
      font-size: 1rem;
      max-width: 100%; /* Garante que a descrição nunca ultrapassa o contentor */
    }

    .hero-eyebrow {
      font-size: 0.72rem;
      flex-wrap: wrap; /* Permite que o texto superior quebre a linha se chegar ao limite do ecrã */
      line-height: 1.5;
    }

   /* Hero CTA button — Fix 6 */
    .btn-primary { width: 100%; justify-content: center; }

    /* Sobre */
    .sobre-img-inner { width: min(100%, 260px); }
    .sobre-img-badge { position: static; margin-top: 1rem; display: inline-block; }
    .sobre-credentials { gap: 0.75rem; }

    /* Especialidades header — Fix 4 */
    .espec-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .espec-header-text { max-width: 100%; }

    /* Grids */
    .espec-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .steps::before { display: none; }
    .step p { font-size: 0.9rem; }
    .dep-grid { grid-template-columns: 1fr; }
    .recon-grid { grid-template-columns: 1fr; }

    /* Form — Fix 2 */
    .form-grid { grid-template-columns: 1fr; }
    .form-privacy { font-size: 0.8rem; }

    /* CTA / Atendimento */
    .cta { padding: 4rem 1.5rem; }
    .atend-wa-btn { width: 100%; justify-content: center; }
    .atend-secondary { flex-direction: column; gap: 0.5rem; }
    .footer-top { grid-template-columns: 1fr; }
    footer { padding: 3rem 1.5rem 2rem; }
    .como-funciona { padding: 5rem 1.5rem; }
    .reconhecimento { padding: 4rem 1.5rem; }
    .faq { padding: 4rem 1.5rem; }

    /* WhatsApp float: icon only */
    .wa-float span { display: none; }
    .wa-float { padding: 1rem; border-radius: 50%; }

    /* Footer bottom stack */
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  }

  /* Scroll offset for fixed nav */
  #sobre, #especialidades, #como-funciona, #faq, #agendar {
    scroll-margin-top: 80px;
  }

  /* ── WHATSAPP FLOAT ── */
  .wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    padding: 0.85rem 1.5rem 0.85rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: waPulse 3s ease-in-out infinite;
  }
  .wa-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  }
  .wa-float svg { flex-shrink: 0; }
  @keyframes waPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 32px rgba(37,211,102,0.65); }
  }

  /* ── RECONHECIMENTO ── */
  .reconhecimento {
    background: var(--white);
    padding: 7rem 5rem;
  }
  .recon-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  .recon-header .section-eyebrow { justify-content: center; }
  .recon-header .section-eyebrow::before { display: none; }
  .recon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 0;
  }
  .recon-card {
    background: var(--cream);
    border: 1px solid rgba(155,110,94,0.1);
    border-radius: 4px;
    padding: 2rem 1.75rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: var(--transition);
  }
  .recon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(155,110,94,0.1);
    border-color: rgba(155,110,94,0.2);
  }
  .recon-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
  }
  .recon-card h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    line-height: 1.3;
  }
  .recon-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.7;
  }


  /* ── FAQ ── */
  .faq {
    background: var(--cream-dark);
    padding: 7rem 5rem;
  }
  .faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;

  }
  .faq-intro p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-top: 1rem;
  }
  .faq-list { display: flex; flex-direction: column; gap: 0; }
  .faq-item {
    border-bottom: 1px solid rgba(155,110,94,0.15);
  }
  .faq-item:first-child { border-top: 1px solid rgba(155,110,94,0.15); }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.4rem 0;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    touch-action: manipulation;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s;
  }
  .faq-question:hover { color: var(--rose); }
  .faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(155,110,94,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    color: var(--rose);
    transition: transform 0.3s;
    line-height: 1;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-answer {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
  }
  .faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.4rem;
  }

  @media (max-width: 1024px) {
    .recon-grid { grid-template-columns: 1fr 1fr; }
    .reconhecimento { padding: 5rem 3rem; }
    .faq { padding: 5rem 3rem; }
    .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  }
  @media (max-width: 640px) {
    .recon-grid { grid-template-columns: 1fr; }
    .reconhecimento { padding: 4rem 1.5rem; }
    .faq { padding: 4rem 1.5rem; }
    .faq-layout { gap: 2rem; }
    .faq-question { font-size: 1rem; padding: 1.2rem 0; }
    .wa-float span { display: none; }
    .wa-float { padding: 1rem; border-radius: 50%; }
  }
