/* ===========================================================
   Dr. Bruno Air — Editorial Design System
   Paleta: Navy (marca) + Dourado (accent) + Off-white (papel)
   Tipografia: Fraunces (serif display) + Manrope (body) + DM Mono
   =========================================================== */

:root {
    --navy: #1E3A5F;
    --navy-deep: #142A47;
    --navy-soft: #4A7593;
    --gold: #B8924A;
    --gold-soft: #D4B070;
    --bone: #FAF8F4;
    --bone-deep: #F0EBE0;
    --line: #E2DCCD;
    --text-soft: #5A6B7E;
    --white: #FFFFFF;
    --whatsapp: #25D366;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Manrope', system-ui, sans-serif;
    --font-mono: 'DM Mono', 'Courier New', monospace;

    --container: 1280px;
    --vh: 1vh;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    background: var(--bone);
    color: var(--navy);
    line-height: 1.5;
    overflow-x: hidden;
    font-feature-settings: "ss01", "kern";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* Paper texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 50% 50%, transparent 0%, rgba(30,58,95,0.018) 100%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== HEADER ===== */
.header {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    position: sticky;
    top: 0;
    background: rgba(250, 248, 244, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }

.brand-link { display: inline-flex; align-items: center; gap: 14px; }
.brand-logo {
    width: 46px; height: 46px;
    background: var(--navy);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 6px;
    flex-shrink: 0;
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -0.01em;
}
.brand-tag {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 4px;
}

.nav-menu {
    display: flex; gap: 36px; align-items: center;
    list-style: none;
}
.nav-menu a {
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu a.nav-cta {
    padding: 10px 22px;
    background: var(--navy);
    border-radius: 999px;
    color: var(--bone);
    text-transform: none;
    transition: all 0.3s ease;
}
.nav-menu a.nav-cta:hover { background: var(--gold); color: var(--navy); }
.nav-menu a.nav-cta::after { display: none; }

.hamburger {
    display: none;
    flex-direction: column; justify-content: center;
    width: 36px; height: 36px;
    cursor: pointer;
    background: transparent;
}
.hamburger span {
    width: 22px; height: 2px;
    background: var(--navy);
    margin: 3px auto;
    transition: 0.3s;
    border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== HERO (Homepage) ===== */
.hero {
    padding: 80px 0 100px;
    position: relative;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 90px;
    align-items: start;
}

.kicker {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 36px;
    animation: fadeUp 0.8s ease 0.1s both;
}
.kicker::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.8vw, 5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--navy-deep);
    margin-bottom: 32px;
    animation: fadeUp 0.9s ease 0.2s both;
    font-variation-settings: "opsz" 144;
}
.hero-title em, .hero-title .text-highlight {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
    font-variation-settings: "opsz" 144;
}

.hero-doctor-name {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--text-soft);
    margin-bottom: 28px;
    animation: fadeUp 0.9s ease 0.3s both;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-soft);
    max-width: 540px;
    margin-bottom: 44px;
    animation: fadeUp 0.9s ease 0.4s both;
}
.hero-subtitle strong {
    font-weight: 600;
    color: var(--navy);
    font-family: var(--font-display);
    font-variation-settings: "opsz" 14;
}

.hero-actions {
    display: flex; align-items: center; gap: 28px;
    margin-bottom: 56px; flex-wrap: wrap;
    animation: fadeUp 0.9s ease 0.5s both;
}

.btn-primary, .btn-read-more {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 18px 32px;
    background: var(--navy);
    color: var(--bone);
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.btn-primary::before, .btn-read-more::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--gold);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 0;
}
.btn-primary:hover, .btn-read-more:hover { color: var(--navy-deep); }
.btn-primary:hover::before, .btn-read-more:hover::before { transform: translateX(0); }
.btn-primary > *, .btn-read-more > * { position: relative; z-index: 1; }
.btn-primary svg, .btn-read-more svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.btn-primary:hover svg, .btn-read-more:hover svg { transform: translateX(4px); }

.hero-credential-badge, .credentials-inline {
    display: flex; align-items: center; gap: 14px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-soft);
    letter-spacing: 0.05em;
}
.credentials-inline .dot, .credential-numbers .divider {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--gold);
    color: transparent;
    font-size: 0;
}
.credential-icon { display: none; }
.credential-numbers { display: flex; align-items: center; gap: 14px; }

/* Stats / numbered credentials grid */
.hero-stats, .credentials-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    padding-top: 36px;
    animation: fadeUp 0.9s ease 0.6s both;
}
.stat-box, .cred-item {
    padding-right: 24px;
    position: relative;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
.stat-box:not(:last-child)::after, .cred-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 6px;
    width: 1px;
    height: calc(100% - 12px);
    background: var(--line);
}
.stat-box h3, .cred-value {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1;
    color: var(--navy-deep);
    margin: 14px 0 10px;
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 144;
}
.stat-box p, .cred-label {
    font-size: 0.82rem;
    color: var(--text-soft);
    line-height: 1.4;
    letter-spacing: 0.01em;
}

/* Hero badge (location) */
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease 0.05s both;
}
.hero-badge i { color: var(--gold); }

/* Hero photo */
.hero-right { animation: fadeUp 1s ease 0.4s both; position: relative; }
.hero-image-wrapper { position: relative; }
.hero-image-wrapper::before {
    content: '01';
    position: absolute;
    top: -50px; right: 0;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 300;
    color: var(--line);
    font-variation-settings: "opsz" 144;
    line-height: 1;
}
.hero-image-frame {
    aspect-ratio: 4/5;
    background: var(--bone-deep);
    overflow: hidden;
    position: relative;
    border-radius: 0;
}
.hero-image-frame img, .hero-doctor-image {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(0.95);
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-image-frame:hover img { transform: scale(1.04); }
.hero-image-frame::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(20,42,71,0.15) 100%);
}

.hero-float-card {
    position: absolute;
    background: var(--bone);
    border: 1px solid var(--line);
    padding: 14px 18px;
    display: flex; align-items: center; gap: 12px;
    font-size: 0.8rem;
    box-shadow: 0 8px 24px rgba(20,42,71,0.08);
    z-index: 3;
}
.hero-float-card i { color: var(--gold); font-size: 1.4rem; }
.hero-float-card div { display: flex; flex-direction: column; line-height: 1.3; }
.hero-float-card strong { color: var(--navy-deep); font-weight: 600; font-size: 0.85rem; }
.hero-float-card span { color: var(--text-soft); font-size: 0.72rem; }
.hero-float-card.card-top { top: 30px; left: -30px; }
.hero-float-card.card-bottom { bottom: 30px; right: -30px; }

.hero-bg-pattern { display: none; }

/* ===== MARQUEE ===== */
.marquee-section {
    border-top: 1px solid var(--navy);
    border-bottom: 1px solid var(--navy);
    overflow: hidden;
    background: var(--navy);
    color: var(--bone);
    padding: 18px 0;
}
.marquee {
    display: flex; gap: 60px;
    animation: scroll 40s linear infinite;
    white-space: nowrap;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 400;
    will-change: transform;
}
.marquee-item { display: inline-flex; align-items: center; gap: 60px; }
.marquee-item::after { content: '✦'; color: var(--gold); font-style: normal; }

/* ===== SECTION HEADER (editorial) ===== */
.section-header, .section-meta {
    display: flex; justify-content: space-between; align-items: end;
    margin-bottom: 70px; padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
    gap: 40px;
}
.section-header > div, .section-meta-left { max-width: 620px; }
.section-header h2, .section-meta h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--navy-deep);
    font-variation-settings: "opsz" 144;
}
.section-header h2 em, .section-meta h2 em {
    font-style: italic; color: var(--gold); font-weight: 300;
}
.section-header p {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--text-soft);
    font-size: 1.1rem;
    margin-top: 12px;
}
.section-meta-right {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-soft);
    text-align: right;
    flex-shrink: 0;
}
.section-meta-right strong { display: block; color: var(--gold); margin-bottom: 4px; }

/* ===== ESPECIALIDADES (Cards Grid) ===== */
.especialidades, .services {
    padding: 110px 0;
    position: relative;
}

.especialidades-grid, .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}
.especialidade-card, .service {
    padding: 44px 36px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    background: transparent;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.especialidade-card:hover, .service:hover { background: var(--bone-deep); }
.especialidade-card:nth-child(3n), .service:nth-child(3n) { border-right: none; }

.card-icon {
    width: 50px; height: 50px;
    margin-bottom: 22px;
    display: flex; align-items: center; justify-content: center;
}
.card-icon img { width: 50px; height: 50px; object-fit: contain; }

.especialidade-card h3, .service-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.15;
    color: var(--navy-deep);
    margin-bottom: 14px;
    font-variation-settings: "opsz" 144;
}
.especialidade-card p, .service-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-soft);
    margin-bottom: auto;
    padding-bottom: 28px;
}

.card-link, .service-arrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: gap 0.3s ease, color 0.3s ease;
}
.card-link::after, .service-arrow::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}
.especialidade-card:hover .card-link, .service:hover .service-arrow {
    gap: 16px; color: var(--gold);
}
.especialidade-card:hover .card-link::after, .service:hover .service-arrow::after {
    transform: translateX(4px);
}

/* ===== SOBRE / FORMAÇÃO ===== */
.sobre, .formacao, .general-section {
    padding: 110px 0;
    position: relative;
}
.sobre-grid, .formacao-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
    align-items: start;
}
.sobre-image img, .local-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.sobre-content h2, .formacao-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--navy-deep);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}
.sobre-content p, .formacao-content p, .general-section p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-soft);
    margin-bottom: 18px;
}
.sobre-content strong { color: var(--navy); font-weight: 600; }

/* ===== FORMACAO TIMELINE ===== */
.timeline-item {
    border-top: 1px solid var(--line);
    padding: 28px 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: start;
}
.timeline-year {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding-top: 6px;
    min-width: 90px;
}
.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--navy-deep);
    margin-bottom: 8px;
}
.timeline-content p {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section, .cta {
    padding: 110px 0;
    background: var(--navy-deep);
    color: var(--bone);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before, .cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(184,146,74,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(184,146,74,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.cta-section .container, .cta .container { position: relative; z-index: 2; }
.cta-section h2, .cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--bone);
    max-width: 800px;
    margin: 0 auto 24px;
    letter-spacing: -0.02em;
}
.cta-section h2 em, .cta h2 em {
    font-style: italic; color: var(--gold-soft); font-weight: 300;
}
.cta-section p, .cta p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(250,248,244,0.7);
    max-width: 600px;
    margin: 0 auto 40px;
}
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 18px 36px;
    background: var(--gold);
    color: var(--navy-deep);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.btn-cta-primary:hover { background: var(--gold-soft); transform: translateY(-2px); }

/* ===== RELATED + BLOG ===== */
.related-section, .blog-related-section {
    padding: 110px 0;
    background: var(--bone-deep);
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    margin-top: 40px;
}
.related-card {
    padding: 36px 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bone);
    transition: background 0.3s ease;
    display: flex; flex-direction: column;
}
.related-card:hover { background: var(--white); }
.related-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--navy-deep);
    margin-bottom: 12px;
    line-height: 1.2;
}
.related-card p {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.5;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
}
.blog-link-card {
    padding: 22px 26px;
    background: var(--bone);
    border: 1px solid var(--line);
    transition: all 0.3s ease;
    display: flex; align-items: center;
}
.blog-link-card:hover {
    background: var(--navy);
    border-color: var(--navy);
}
.blog-link-card:hover h3 { color: var(--bone); }
.blog-link-card:hover h3 i { color: var(--gold); }
.blog-link-card h3 {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--navy-deep);
    display: flex; align-items: center; gap: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.blog-link-card h3 i { color: var(--gold); transition: color 0.3s ease; }

/* ===== FAQ ===== */
.faq-section {
    padding: 110px 0;
}
.faq-list {
    margin-top: 40px;
    border-top: 1px solid var(--line);
}
.faq-item, details {
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
    cursor: pointer;
}
.faq-item summary, details summary {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--navy-deep);
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    gap: 30px;
    cursor: pointer;
    line-height: 1.3;
}
.faq-item summary::-webkit-details-marker, details summary::-webkit-details-marker { display: none; }
.faq-item summary::after, details summary::after {
    content: '+';
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-item[open] summary::after, details[open] summary::after { transform: rotate(45deg); }
.faq-item p, .faq-item div, details p, details div {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-soft);
    margin-top: 18px;
    padding-right: 60px;
}

/* ===== CONTATO ===== */
.contato-grid, .contato-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    margin-top: 30px;
}
.contato-card {
    padding: 40px 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center;
    background: var(--bone);
    transition: background 0.3s ease;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.contato-card:hover { background: var(--white); }
.contato-card i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 18px;
}
.contato-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--navy-deep);
    margin-bottom: 14px;
}
.contato-card p {
    color: var(--text-soft);
    font-size: 0.95rem;
    margin-bottom: 18px;
    line-height: 1.5;
}
.contato-card .btn, .contato-card .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px;
    border: 1px solid var(--navy);
    color: var(--navy);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.contato-card .btn:hover, .contato-card .btn-outline:hover {
    background: var(--navy);
    color: var(--bone);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-deep);
    color: rgba(250,248,244,0.75);
    padding: 80px 0 40px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 20%, rgba(184,146,74,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(226,220,205,0.15);
    position: relative;
    z-index: 2;
}
.footer-info img.footer-logo {
    width: 200px; height: auto;
    margin-bottom: 22px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}
.footer-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
}
.footer-info p strong, .footer-info strong { color: var(--gold-soft); font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.05em; }

.footer-menu p, .footer-menu h4, .footer-contato p:first-child {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 22px;
    font-weight: 500;
}
.footer-menu ul { list-style: none; }
.footer-menu li { margin-bottom: 10px; }
.footer-menu a {
    font-size: 0.95rem;
    color: rgba(250,248,244,0.75);
    transition: color 0.3s ease;
}
.footer-menu a:hover { color: var(--gold); }
.footer-contato p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 8px; }
.footer-contato a { color: rgba(250,248,244,0.75); transition: color 0.3s ease; }
.footer-contato a:hover { color: var(--gold); }

.footer-bottom {
    padding-top: 30px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(250,248,244,0.5);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
}
.footer-bottom a, .qmix-link {
    color: var(--gold-soft);
    transition: color 0.3s ease;
}
.footer-bottom a:hover, .qmix-link:hover { color: var(--gold); }

/* ===== FLOAT BAR (WhatsApp + Instagram) ===== */
.float-bar {
    position: fixed;
    right: 20px; bottom: 20px;
    display: flex; flex-direction: column; gap: 10px;
    z-index: 999;
}
.float-bar a {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--bone);
    box-shadow: 0 6px 20px rgba(20,42,71,0.25);
    transition: transform 0.3s ease;
    overflow: hidden;
}
.float-bar a span { display: none; }
.float-bar a:hover { transform: scale(1.08); }
.float-bar a svg { width: 28px; height: 28px; fill: currentColor; }
.float-bar-whatsapp { background: var(--whatsapp); }
.float-bar-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    left: 20px; bottom: 20px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--bone);
    align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    border: none;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ===== COOKIE CONSENT (LGPD) ===== */
#cookie-consent-banner {
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    background: var(--bone);
    box-shadow: 0 -4px 20px rgba(20,42,71,0.15);
    border-top: 3px solid var(--navy);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
#cookie-consent-banner.cookie-consent-show { transform: translateY(0); opacity: 1; }
#cookie-consent-banner.cookie-consent-hide { transform: translateY(100%); opacity: 0; }
.cookie-consent-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 18px 40px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
}
.cookie-consent-text { flex: 1; min-width: 280px; }
.cookie-consent-text p {
    margin: 0; font-size: 0.92rem; line-height: 1.5; color: var(--navy);
}
.cookie-consent-text a {
    color: var(--navy);
    text-decoration: underline; font-weight: 600;
}
.cookie-consent-text a:hover { color: var(--gold); }
.cookie-consent-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 44px;
    font-family: inherit;
    transition: all 0.2s ease;
    cursor: pointer;
}
.cookie-btn-accept {
    background: var(--navy);
    color: var(--bone);
    border: none;
}
.cookie-btn-accept:hover { background: var(--gold); color: var(--navy); }
.cookie-btn-reject {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--navy);
}
.cookie-btn-reject:hover { background: var(--navy); color: var(--bone); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-soft);
    padding: 24px 0 0;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { margin: 0 10px; color: var(--line); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.in-view { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container { padding: 0 32px; }
    .hero-grid { gap: 60px; }
    .especialidades-grid, .services-grid, .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .especialidade-card:nth-child(3n), .service:nth-child(3n) {
        border-right: 1px solid var(--line);
    }
    .especialidade-card:nth-child(2n), .service:nth-child(2n),
    .related-card:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .nav-menu {
        position: fixed;
        top: 78px; left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--bone);
        padding: 30px;
        gap: 20px;
        align-items: stretch;
        transition: left 0.3s ease;
        height: calc(100vh - 78px);
        border-top: 1px solid var(--line);
        z-index: 99;
    }
    .nav-menu.active { left: 0; }
    .nav-menu a { font-size: 1rem; padding: 12px 0; border-bottom: 1px solid var(--line); }
    .nav-menu a::after { display: none; }
    .nav-menu a.nav-cta { padding: 14px 22px; text-align: center; border-bottom: none; }
    .hamburger { display: flex; }

    .hero { padding: 50px 0 70px; }
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-stats, .credentials-list { grid-template-columns: 1fr; gap: 24px; }
    .stat-box, .cred-item {
        border-bottom: 1px solid var(--line);
        padding-bottom: 20px;
        padding-right: 0;
    }
    .stat-box::after, .cred-item::after { display: none; }
    .hero-image-wrapper::before { font-size: 3.5rem; top: -36px; }
    /* Mobile: cards saem de cima da foto e ficam abaixo dela, lado a lado */
    .hero-image-wrapper {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .hero-image-frame {
        order: 1;
    }
    .hero-float-card {
        position: static !important;
        order: 2;
        width: 100%;
        margin: 0;
        background: var(--bone-deep);
        border: 1px solid var(--line);
        box-shadow: none;
    }
    .hero-float-card.card-top { order: 2; }
    .hero-float-card.card-bottom { order: 3; }

    .especialidades-grid, .services-grid, .related-grid, .contato-grid {
        grid-template-columns: 1fr;
    }
    .especialidade-card, .service, .related-card, .contato-card {
        border-right: none;
    }

    .blog-grid { grid-template-columns: 1fr; }
    .sobre-grid, .formacao-grid { grid-template-columns: 1fr; gap: 50px; }

    .section-header, .section-meta {
        flex-direction: column;
        align-items: start;
        gap: 16px;
    }
    .section-meta-right { text-align: left; }

    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .brand-tag { display: none; }

    .marquee { font-size: 1.2rem; gap: 40px; }
    .marquee-item { gap: 40px; }

    .timeline-item { grid-template-columns: 1fr; gap: 8px; }

    .cookie-consent-inner { padding: 16px 20px; }
    .cookie-consent-actions { width: 100%; flex-direction: column; }
    .cookie-btn { width: 100%; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-read-more { width: 100%; justify-content: center; }
    .float-bar { right: 16px; bottom: 16px; }
    .float-bar a { width: 50px; height: 50px; }
    .float-bar a svg { width: 24px; height: 24px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .marquee { animation: none; }
}


/* =========================================================
   SERVICE PAGES (cirurgia / tratamento)
   ========================================================= */

/* Hero das paginas de servico */
.hero-servico {
    padding: 80px 0 100px;
    position: relative;
}
.hero-servico .hero-content {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 90px;
    align-items: start;
}
.hero-servico .hero-text {
    animation: fadeUp 0.9s ease 0.1s both;
}
.hero-servico .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 28px;
}
.hero-servico .hero-badge::before {
    content: ""; width: 24px; height: 1px; background: var(--gold);
}
.hero-servico h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--navy-deep);
    margin-bottom: 24px;
    font-variation-settings: "opsz" 144;
}
.hero-servico h2 {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--text-soft);
    margin-bottom: 26px;
}
.hero-servico .hero-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-soft);
    max-width: 540px;
    margin-bottom: 0;
}
.hero-servico .hero-image {
    animation: fadeUp 1s ease 0.3s both;
}
.hero-servico .hero-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: contrast(1.05) saturate(0.95);
    border-radius: 0;
}

/* Trust Bar */
.trust-bar {
    background: var(--navy);
    color: var(--bone);
    padding: 36px 0;
    border-top: 1px solid var(--navy-deep);
    border-bottom: 1px solid var(--navy-deep);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.trust-item {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid rgba(184,146,74,0.2);
}
.trust-item:last-child { border-right: none; }
.trust-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--gold-soft);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 144;
}
.trust-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(250,248,244,0.7);
}

/* Section Label */
.section-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 14px;
}

/* O que e Section */
.o-que-e-section {
    padding: 110px 0;
}
.oque-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.oque-img img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}
.oque-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-soft);
    margin-bottom: 28px;
}
.oque-features {
    display: grid;
    gap: 14px;
    border-top: 1px solid var(--line);
    padding-top: 28px;
}
.oque-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--navy-deep);
    font-style: italic;
    font-weight: 400;
}
.oque-feature i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* Sintomas Section */
.sintomas-section {
    padding: 110px 0;
    background: var(--bone-deep);
}
.sintomas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    margin-top: 40px;
}
.sintoma-card {
    padding: 36px 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bone);
    text-align: center;
    transition: background 0.3s ease;
}
.sintoma-card:hover { background: var(--white); }
.sintoma-card .icon, .sintoma-card i:first-child {
    font-size: 2.4rem;
    color: var(--gold);
    margin-bottom: 18px;
    display: inline-block;
}
.sintoma-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--navy-deep);
    margin-bottom: 10px;
}
.sintoma-card p {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.5;
}

/* Tratamentos Section */
.tratamentos-section {
    padding: 110px 0;
}
.tratamento-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    margin-top: 40px;
}
.tratamento-card {
    padding: 40px 36px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bone);
}
.tratamento-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--navy-deep);
    margin-bottom: 16px;
}
.tratamento-card > p {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 20px;
}
.tratamento-lista {
    list-style: none;
    padding: 0;
}
.tratamento-lista li {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
    color: var(--navy-deep);
    display: flex;
    align-items: start;
    gap: 12px;
}
.tratamento-lista li:last-child { border-bottom: none; }
.tratamento-lista li::before {
    content: "\002728";
    color: var(--gold);
    font-size: 0.8rem;
    margin-top: 4px;
}

/* Processo / Timeline */
.processo-section {
    padding: 110px 0;
    background: var(--bone-deep);
}
.processo-timeline {
    display: grid;
    gap: 0;
    margin-top: 40px;
    border-top: 1px solid var(--line);
}
.processo-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    padding: 36px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
}
.step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--gold);
    font-variation-settings: "opsz" 144;
    min-width: 90px;
}
.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--navy-deep);
    margin-bottom: 10px;
}
.step-content p {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.6;
}

/* Beneficios Section */
.beneficios-section {
    padding: 110px 0;
}
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    margin-top: 40px;
}
.beneficio-card {
    padding: 40px 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bone);
    transition: background 0.3s ease;
}
.beneficio-card:hover { background: var(--bone-deep); }
.beneficio-card i:first-child, .beneficio-card .icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 18px;
    display: inline-block;
}
.beneficio-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--navy-deep);
    margin-bottom: 10px;
}
.beneficio-card p {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.55;
}

/* Doutor Section (about doc on service pages) */
.doutor-section {
    padding: 110px 0;
    background: var(--bone-deep);
}
.doutor-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.doutor-image img, .doutor-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.doutor-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--navy-deep);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.doutor-info p {
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 18px;
}
.credenciais {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    padding-top: 24px;
    margin-top: 24px;
}
.credencial {
    padding: 16px 20px 16px 0;
}
.credencial .number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--navy-deep);
    line-height: 1;
    display: block;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.credencial .label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
}

/* Locais Section */
.locais-section {
    padding: 110px 0;
}
.locais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    margin-top: 40px;
}
.local-card {
    padding: 36px 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bone);
    transition: background 0.3s ease;
}
.local-card:hover { background: var(--bone-deep); }
.local-card .icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 18px;
    display: inline-block;
}
.local-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--navy-deep);
    margin-bottom: 12px;
}
.local-card p, .local-card .subtitle {
    font-size: 0.92rem;
    color: var(--text-soft);
    line-height: 1.55;
    margin-bottom: 8px;
}
.local-card .phone {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-top: 14px;
    display: block;
}

/* Section Header for service pages */
.o-que-e-section .section-header,
.sintomas-section .section-header,
.tratamentos-section .section-header,
.processo-section .section-header,
.beneficios-section .section-header,
.locais-section .section-header,
.cta-section .section-header,
.related-section .section-header,
.blog-related-section .section-header {
    text-align: center;
    display: block;
    margin-bottom: 30px;
    padding-bottom: 0;
    border-bottom: none;
}
.o-que-e-section .section-header h2,
.sintomas-section .section-header h2,
.tratamentos-section .section-header h2,
.processo-section .section-header h2,
.beneficios-section .section-header h2,
.locais-section .section-header h2,
.cta-section .section-header h2,
.related-section .section-header h2,
.blog-related-section .section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--navy-deep);
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 144;
}
.section-header .section-label {
    color: var(--gold);
    margin-bottom: 14px;
}

/* Related sections */
.related-section, .blog-related-section {
    padding: 110px 0;
}
.related-section { background: var(--bone-deep); }
.blog-related-section { background: var(--bone); }

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    margin-top: 40px;
}
.related-card {
    padding: 36px 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bone);
    transition: background 0.3s ease;
}
.related-section .related-card:hover { background: var(--white); }
.blog-related-section .related-card:hover { background: var(--bone-deep); }
.related-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy-deep);
    margin-bottom: 10px;
    line-height: 1.2;
}
.related-card p {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.5;
}

/* CTA Section (service pages) */
.cta-section {
    padding: 110px 0;
    background: var(--navy-deep);
    color: var(--bone);
    text-align: center;
}
.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--bone);
    max-width: 800px;
    margin: 0 auto 24px;
    letter-spacing: -0.02em;
}
.cta-content > p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(250,248,244,0.7);
    max-width: 600px;
    margin: 0 auto 40px;
}
.cta-section .cta-buttons { justify-content: center; }

/* Mobile responsive for service pages */
@media (max-width: 1024px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
    .trust-item:nth-child(2) { border-right: none; }
    .sintomas-grid, .related-grid, .beneficios-grid, .locais-grid { grid-template-columns: repeat(2, 1fr); }
    .tratamento-tabs { grid-template-columns: 1fr; }
    .doutor-content, .oque-card { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
    .hero-servico { padding: 50px 0 70px; }
    .hero-servico .hero-content { grid-template-columns: 1fr; gap: 50px; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(184,146,74,0.2); padding-bottom: 18px; }
    .trust-item:last-child { border-bottom: none; }
    .sintomas-grid, .related-grid, .beneficios-grid, .locais-grid { grid-template-columns: 1fr; }
    .processo-step { grid-template-columns: 1fr; gap: 12px; }
    .credenciais { grid-template-columns: 1fr; }
}
