/* ================================================
   STYLE-PAGES.CSS — Páginas Internas
   Dra. Rafaela Laranjeira
   Sincronizado com style-redesign.css
   ================================================ */

/* ================================================
   1. VARIÁVEIS (espelhadas do style-redesign.css)
   ================================================ */
:root {
    /* Brand Colors */
    --midnight-navy: #1B1F2A;
    --vanilla-silk: #EBD5BD;
    --vanilla-silk-dark: #D4C5A9;
    --toffee-gold: #522E15;
    --toffee-gold-light: #D19366;
    --espresso-bronze: #522E15;
    --warm-cream-base: #D19366;
    --warm-cream: #E8C5A0;
    --header-bronze: #522E15;

    /* Legacy aliases */
    --primary-gold: var(--toffee-gold);
    --primary-gold-dark: var(--espresso-bronze);
    --primary-gold-light: var(--toffee-gold-light);

    /* Neutrals */
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E0E0E0;
    --gray-300: #CCCCCC;
    --gray-600: #666666;
    --gray-900: #333333;

    /* Action */
    --success-green: #25D366;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-gazpacho: 'Gazpacho Regular', cursive;
    --font-antonio: 'Antonio Medium', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Quiet Luxury - Refinamentos */
    --shadow-luxury: 0 20px 40px -5px rgba(82, 46, 21, 0.1);
    /* Sombra difusa e elegante */
    --shadow-hover: 0 30px 60px -10px rgba(82, 46, 21, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --backdrop-blur: blur(12px);
    --ease-luxury: cubic-bezier(0.23, 1, 0.32, 1);
    /* Movimento sofisticado */
}

/* Container principal - igual ao style-redesign.css */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ================================================
   2. FONT FACES
   ================================================ */
@font-face {
    font-family: 'Gazpacho Regular';
    src: url('../../gazpacho-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Antonio Medium';
    src: url('../../antonio-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* ================================================
   3. RESET & BASE
   ================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--gray-100);
    color: var(--gray-900);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /* Renderização de fonte mais nítida */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--toffee-gold-light);
    border-radius: 5px;
    border: 2px solid var(--gray-100);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--toffee-gold);
}

/* ================================================
   ANIMATIONS & UTILS (Budget Luxury)
   ================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 1s var(--ease-luxury) forwards;
}

.glass-panel {
    background: var(--glass-bg);
    border: var(--glass-border);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    box-shadow: var(--shadow-luxury);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    transition: var(--transition-base);
}

/* ================================================
   4. HEADER (simplificado para páginas internas)
   ================================================ */
.header-page {
    background: rgba(82, 46, 21, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-page {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-page {
    color: var(--vanilla-silk);
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    transition: var(--transition-base);
}

.logo-page:hover {
    color: var(--warm-cream);
}

.back-link {
    color: var(--vanilla-silk-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: var(--transition-base);
}

.back-link:hover {
    color: var(--white);
}

/* ================================================
   4.5 BREADCRUMBS
   ================================================ */
.breadcrumb {
    max-width: 800px;
    margin: 70px auto 0;
    padding: 15px 20px;
    font-size: 13px;
    font-family: var(--font-primary);
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    color: var(--gray-600);
}

.breadcrumb li+li::before {
    content: "›";
    margin: 0 8px;
    color: var(--toffee-gold-light);
    font-size: 16px;
    font-weight: 300;
}

.breadcrumb a {
    color: var(--toffee-gold-light);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--espresso-bronze);
    text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
    color: var(--gray-600);
    font-weight: 400;
}

/* ================================================
   5. CONTEÚDO PRINCIPAL
   ================================================ */
.main-content {
    max-width: 800px;
    margin: 100px auto 60px;
    padding: 0 20px;
}

/* ================================================
   6. TIPOGRAFIA
   ================================================ */
h1 {
    font-family: var(--font-gazpacho);
    color: var(--toffee-gold);
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: center;
}

h2 {
    font-family: var(--font-heading);
    color: var(--toffee-gold);
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--warm-cream);
    padding-bottom: 10px;
}

h3 {
    font-family: var(--font-primary);
    color: var(--espresso-bronze);
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

p {
    margin-bottom: 15px;
    font-size: 16px;
    text-align: justify;
}

ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style: disc;
}

li {
    margin-bottom: 8px;
}

/* ================================================
   7. IMAGENS & GALERIA
   ================================================ */
.img-container {
    margin: 30px 0;
    text-align: center;
}

.img-content {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-luxury);
    transition: transform var(--transition-base);
}

.img-content:hover {
    transform: scale(1.01);
}

.img-caption,
.image-caption {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 10px;
    font-style: italic;
    display: block;
}

.img-featured {
    width: 100%;
    border-radius: var(--radius-lg);
    margin: 30px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-item img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* ================================================
   8. VIDEO
   ================================================ */
.video-wrapper {
    margin: 40px auto;
    max-width: 320px;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 177.77%;
}

.video-placeholder-content,
.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--espresso-bronze), var(--toffee-gold-light));
    color: var(--vanilla-silk);
    text-align: center;
    padding: 20px;
}

/* ================================================
   9. CTAs & BOTÕES
   ================================================ */
.cta-box {
    background: var(--white);
    border: 1px solid rgba(232, 197, 160, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    box-shadow: var(--shadow-luxury);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #20BA5B);
    color: var(--white);
    padding: 15px 30px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: var(--transition-base);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.cta-final {
    background: var(--espresso-bronze);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
    border-radius: var(--radius-lg);
}

.cta-final h2 {
    color: var(--vanilla-silk);
    border: none;
    margin-top: 0;
}

.cta-final a {
    color: var(--vanilla-silk);
}

.btn-primary {
    display: inline-block;
    background: var(--toffee-gold-light);
    color: var(--white);
    padding: 15px 40px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: var(--transition-base);
}

.btn-primary:hover {
    background: var(--vanilla-silk);
    color: var(--espresso-bronze);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* ================================================
   AUTO-ANIMATIONS
   ================================================ */
.main-content,
.hero-local,
.hero-guia,
.hero-cnh,
.hero-exame {
    animation: fadeUp 1s var(--ease-luxury) forwards;
}

/* ================================================
   10. FAQ (accordion)
   ================================================ */
.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: var(--shadow-luxury);
    border: none;
    border-left: 4px solid var(--toffee-gold-light);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.faq-item h3 {
    margin-top: 0;
    font-size: 18px;
    color: var(--espresso-bronze);
}

.faq-item p {
    margin-bottom: 0;
    font-size: 15px;
}

/* FAQ Accordion (faq.html) */
.faq-page-content {
    max-width: 900px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.page-title {
    font-family: var(--font-gazpacho);
    font-size: 42px;
    color: var(--toffee-gold);
    text-align: center;
    margin-bottom: 20px;
}

.page-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 50px;
    font-size: 18px;
}

.faq-category {
    margin-bottom: 40px;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--toffee-gold-light);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 10px;
}

/* Accordion interactive FAQ */
.faq-accordion .faq-item {
    overflow: hidden;
    padding: 0;
    border-left: none;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--espresso-bronze);
    transition: var(--transition-base);
}

.faq-question:hover {
    background-color: var(--gray-100);
}

.faq-question i {
    color: var(--toffee-gold-light);
    transition: var(--transition-base);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--gray-100);
    padding: 0 20px;
}

.faq-answer p {
    padding: 20px 0;
    color: var(--gray-600);
    text-align: left;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ================================================
   11. LINKS INTERNOS
   ================================================ */
.internal-link {
    color: var(--toffee-gold-light);
    font-weight: 600;
    text-decoration: underline;
}

.internal-link:hover {
    color: var(--espresso-bronze);
}

/* ================================================
   12. FOOTER
   ================================================ */
.footer-page {
    text-align: center;
    padding: 40px 20px;
    background: var(--espresso-bronze);
    margin-top: 0;
    font-size: 14px;
    color: var(--vanilla-silk-dark);
}

.footer-page strong {
    color: var(--vanilla-silk);
}

.simple-footer {
    background: var(--espresso-bronze);
    color: var(--vanilla-silk-dark);
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

.simple-footer strong {
    color: var(--vanilla-silk);
}

.cta-btn {
    display: inline-block;
    background: var(--toffee-gold-light);
    color: var(--white);
    padding: 12px 30px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: var(--transition-base);
}

.cta-btn:hover {
    background: var(--vanilla-silk);
    color: var(--espresso-bronze);
}

/* ================================================
   13. WHATSAPP FLUTUANTE
   ================================================ */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--success-green);
    color: var(--white);
    border-radius: var(--radius-full);
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b857;
}

/* ================================================
   14. HERO LOCAL (páginas de localidade)
   ================================================ */
.hero-local {
    margin-top: 60px;
    background: linear-gradient(rgba(82, 46, 21, 0.92), rgba(82, 46, 21, 0.85)), url('../../assets/images/consultorio-oftalmo.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.badge-local {
    background: var(--toffee-gold-light);
    color: var(--white);
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-local h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
    text-align: center;
}

.hero-local p {
    font-size: 18px;
    color: var(--vanilla-silk-dark);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

/* ================================================
   15. DIFERENCIAIS GRID
   ================================================ */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.diferencial-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-luxury);
    border: none;
    border-top: 3px solid var(--toffee-gold-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diferencial-card i {
    font-size: 30px;
    color: var(--espresso-bronze);
    margin-bottom: 15px;
}

/* ================================================
   16. CILADAS BOX
   ================================================ */
.ciladas-box {
    background: var(--white);
    box-shadow: var(--shadow-luxury);
    border-left: 1px solid var(--gray-200);
    border-right: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.cilada-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-100);
}

.cilada-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cilada-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.cilada-icon {
    color: var(--toffee-gold-light);
    font-size: 24px;
    background: rgba(209, 147, 102, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
}

.cilada-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--espresso-bronze);
    font-weight: 700;
    margin: 0;
}

/* ================================================
   17. SAIBA MAIS BOX
   ================================================ */
.saiba-mais-box {
    background: var(--white);
    border-left: 4px solid var(--toffee-gold-light);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    box-shadow: var(--shadow-luxury);
}

/* ================================================
   18. TYPE CARDS (tipos de procedimento)
   ================================================ */
.type-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

/* Article content (blog-type pages) */
.article-content {
    max-width: 800px;
    margin: 100px auto 60px;
    padding: 0 20px;
}

/* Image placeholder (location pages) */
.img-placeholder {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 30px 0;
    box-shadow: var(--shadow-md);
}

.legenda {
    font-size: 13px;
    color: var(--gray-600);
    text-align: center;
    display: block;
    margin-top: -20px;
    font-style: italic;
}

/* ================================================
   19. RESPONSIVIDADE
   ================================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    .img-content {
        width: 100%;
    }

    .page-title {
        font-size: 32px;
    }

    .hero-local h1 {
        font-size: 32px;
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .ciladas-box {
        padding: 25px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   15. DEFINITION BOX (Artigos)
   ================================================ */
.definition-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* ================================================
   15b. EMERGENCY CARD
   ================================================ */
.emergency-card {
    background: #fff;
    padding: 20px;
    border-left: 5px solid #d32f2f;
    margin-bottom: 40px;
    box-shadow: var(--shadow-luxury);
    border-radius: 8px;
    overflow: hidden;
}

.emergency-card h2 {
    color: #d32f2f;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 24px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

/* ================================================
   15c. BADGE LOCAL
   ================================================ */
.badge-local {
    background: var(--toffee-gold);
    color: var(--midnight-navy);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* ================================================
   15d. READ MORE BOX
   ================================================ */
.read-more-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-top: 60px;
    border-top: 5px solid var(--toffee-gold);
    box-shadow: var(--shadow-luxury);
}

.read-more-list {
    list-style: none;
    padding: 0;
}

.read-more-list li {
    margin-bottom: 12px;
    font-size: 16px;
}

.read-more-list i {
    color: var(--toffee-gold);
    margin-right: 10px;
}

/* ================================================
   15e. TABLE (Artigos)
   ================================================ */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: var(--shadow-luxury);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.article-content th,
.article-content td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.article-content th {
    background: var(--midnight-navy);
    color: #fff;
}

.article-content tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* ================================================
   15f. CTA BUTTON HERO
   ================================================ */
.cta-button {
    background: var(--toffee-gold);
    color: var(--midnight-navy);
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ================================================
   16. EXAME DE VISTA - COMPONENTES
   ================================================ */
.hero-exame {
    margin-top: 60px;
    background: linear-gradient(rgba(82, 46, 21, 0.85), rgba(82, 46, 21, 0.95)),
        url('../../assets/images/exame-greens.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.hero-exame h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--toffee-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-exame .subtitulo {
    font-size: 20px;
    margin-bottom: 40px;
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.beneficios-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.beneficios-list li {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-luxury);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid var(--toffee-gold);
    transition: transform 0.3s ease;
}

.beneficios-list li i {
    font-size: 24px;
    color: var(--toffee-gold);
}

.exame-completo {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-luxury);
}

.exame-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.exame-coluna h3 {
    color: var(--midnight-navy);
    margin-bottom: 20px;
    font-size: 22px;
}

.exame-coluna ul {
    list-style: none;
    padding: 0;
}

.exame-coluna li {
    margin-bottom: 12px;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.exame-coluna li i {
    color: #2e7d32;
    margin-top: 4px;
}

.preco-card {
    background: #fff;
    border: 2px solid var(--toffee-gold);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 40px auto;
    box-shadow: var(--shadow-luxury);
    position: relative;
    overflow: hidden;
}

.preco {
    font-size: 48px;
    font-weight: bold;
    color: var(--toffee-gold);
    margin: 10px 0;
}

.btn-whatsapp-gigante {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.btn-whatsapp-gigante:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* ================================================
   17. ACESSIBILIDADE
   ================================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ================================================
   17. GUIA ÓCULOS - COMPONENTES
   ================================================ */
.hero-guia {
    margin-top: 60px;
    background: linear-gradient(rgba(82, 46, 21, 0.9), rgba(82, 46, 21, 0.8)),
        url('../../assets/images/exame-greens.avif');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.hero-guia h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--toffee-gold);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-guia .subtitulo {
    font-size: 18px;
    margin-bottom: 30px;
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto 30px;
}

.destaque-importante {
    background: rgba(196, 164, 124, 0.2);
    border: 1px solid var(--toffee-gold);
    padding: 15px;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(5px);
}

.etapas-processo {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.etapa {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border-radius: 15px;
    box-shadow: var(--shadow-luxury);
    border: none;
    border-left: 5px solid var(--toffee-gold);
    position: relative;
}

.numero-etapa {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: var(--midnight-navy);
    color: var(--toffee-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tabela-receita {
    overflow-x: auto;
    margin: 30px 0;
}

.tabela-receita table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.tabela-receita th {
    background: var(--midnight-navy);
    color: #fff;
    padding: 15px;
}

.tabela-receita td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: center;
    color: #333;
}

.tabela-receita tr:last-child td {
    border-bottom: none;
}

.glossario-receita {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.termo-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border-radius: 10px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.lente-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.lente-header {
    background: var(--midnight-navy);
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lente-header h3 {
    margin: 0;
    color: #fff;
    font-size: 20px;
}

.badge-idade {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
}

.lente-conteudo {
    padding: 30px;
}

.lente-conteudo ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.lente-conteudo li {
    margin-bottom: 8px;
    font-size: 15px;
}

.destaque-moderna {
    border: 2px solid var(--toffee-gold);
    transform: scale(1.02);
}

.destaque-moderna .lente-header {
    background: linear-gradient(135deg, var(--toffee-gold), #a07a4a);
}

.tratamentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tratamento-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid var(--toffee-gold);
    box-shadow: var(--shadow-luxury);
    border: none;
}

.img-caption {
    font-size: 13px;
    color: #666;
    font-style: italic;
    text-align: center;
    display: block;
    margin-top: -20px;
    margin-bottom: 30px;
}

/* ================================================
   18. RENOVAÇÃO CNH - COMPONENTES
   ================================================ */
.hero-cnh {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--midnight-navy) 0%, #1a1a1a 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero-cnh h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--toffee-gold);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-cnh .subtitulo {
    font-size: 18px;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.alerta-importante {
    background: rgba(196, 164, 124, 0.1);
    border: 2px solid var(--toffee-gold);
    padding: 20px;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.alerta-importante h3 {
    color: var(--toffee-gold);
    margin-bottom: 10px;
    font-size: 20px;
}

.razoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.razao-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-luxury);
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.razao-card:hover {
    transform: translateY(-5px);
}

.razao-card .icone {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.razao-card h3 {
    color: var(--midnight-navy);
    margin-bottom: 10px;
    font-size: 18px;
}

.exame-completo {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.exame-coluna {
    flex: 1;
    min-width: 280px;
}

.exame-coluna h3 {
    color: var(--toffee-gold);
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.exame-coluna ul {
    list-style: none;
    padding: 0;
}

.exame-coluna li {
    margin-bottom: 12px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.timeline-item {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #2e7d32;
    min-width: 250px;
    box-shadow: var(--shadow-luxury);
}

.timeline-item.urgente {
    border-left-color: #d32f2f;
    background: #fff5f5;
}

.timeline-item strong {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--midnight-navy);
}

.lista-sinais {
    background: #fff;
    padding: 40px 40px 40px 60px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.lista-sinais li {
    margin-bottom: 15px;
    font-size: 18px;
}

.destaque-alerta {
    text-align: center;
    font-weight: bold;
    color: #d32f2f;
    font-size: 18px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}

.passos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.passo {
    text-align: center;
}

.passo .numero {
    width: 50px;
    height: 50px;
    background: var(--midnight-navy);
    color: var(--toffee-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.urgencia {
    color: #ffeb3b;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.info-rapida p {
    margin: 5px 0;
    font-size: 14px;
    opacity: 0.8;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* ================================================
   ACESSIBILIDADE E FOCO
   ================================================ */
.back-link:focus,
.btn-whatsapp:focus,
.btn-primary:focus,
.whatsapp-float:focus {
    outline: 3px solid var(--toffee-gold-light);
    outline-offset: 2px;
}

/* ================================================
   LUXURY GRADIENT (Requested Custom Style)
   ================================================ */
.bg-deserto-luxo {
    background: linear-gradient(135deg, #EBD5BD 0%, #D19366 75%, var(--vanilla-silk-dark) 100%);
    min-height: 100vh;
    background-attachment: fixed;
}

.bg-deserto-luxo main,
.bg-deserto-luxo .article-content,
.bg-deserto-luxo .main-content,
.bg-deserto-luxo .section-container,
.bg-deserto-luxo .faq-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    margin: 40px auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-luxury);
    backdrop-filter: blur(5px);
    max-width: 900px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {

    .bg-deserto-luxo main,
    .bg-deserto-luxo .article-content,
    .bg-deserto-luxo .main-content,
    .bg-deserto-luxo .section-container {
        padding: 20px;
        margin: 20px 15px;
    }

    /* Hero sections - mobile */
    .hero-exame,
    .hero-guia,
    .hero-cnh {
        padding: 60px 15px;
    }

    .hero-exame h1,
    .hero-guia h1,
    .hero-cnh h1 {
        font-size: 28px;
    }

    .hero-exame .subtitulo,
    .hero-guia .subtitulo,
    .hero-cnh .subtitulo {
        font-size: 16px;
    }

    /* Grids - single column on mobile */
    .exame-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .exame-completo {
        padding: 20px;
    }

    .razoes-grid,
    .tratamentos-grid,
    .glossario-receita,
    .passos {
        grid-template-columns: 1fr;
    }

    /* Timeline - stack on mobile */
    .timeline {
        flex-direction: column;
    }

    .timeline-item {
        min-width: auto;
    }

    /* Price card */
    .preco-card {
        padding: 25px 15px;
    }

    .preco {
        font-size: 36px;
    }

    .btn-whatsapp-gigante {
        padding: 15px 25px;
        font-size: 16px;
    }

    /* CTA final */
    .cta-final {
        padding: 40px 15px;
        margin-top: 40px;
    }

    /* Tables - horizontal scroll */
    .article-content table,
    .tabela-receita table {
        font-size: 14px;
    }

    .article-content th,
    .article-content td,
    .tabela-receita th,
    .tabela-receita td {
        padding: 10px 8px;
    }

    /* Lente cards */
    .destaque-moderna {
        transform: none;
    }

    .lente-conteudo {
        padding: 20px;
    }

    /* Lists */
    .lista-sinais {
        padding: 25px 25px 25px 40px;
    }

    .lista-sinais li {
        font-size: 16px;
    }

    /* Footer */
    .footer-page {
        padding: 20px 15px;
    }
}

/* ================================================
   EXTRA SMALL SCREENS (≤480px)
   ================================================ */
@media (max-width: 480px) {

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    .page-title {
        font-size: 26px;
    }

    .main-content,
    .article-content {
        padding: 15px;
    }

    .bg-deserto-luxo main,
    .bg-deserto-luxo .article-content,
    .bg-deserto-luxo .main-content,
    .bg-deserto-luxo .section-container {
        padding: 15px;
        margin: 15px 10px;
        border-radius: var(--radius-md);
    }

    .faq-page-content {
        margin: 80px auto 40px;
        padding: 0 15px;
    }

    .breadcrumb {
        padding: 10px 15px;
        font-size: 13px;
    }

    .cta-box {
        padding: 15px;
    }

    .img-content {
        border-radius: var(--radius-md);
    }

    .etapa {
        padding: 20px;
    }

    .beneficios-list li {
        padding: 15px;
    }
}

/* CTA & MAPA IMPORTADOS DE STYLE-REDESIGN.CSS */
/* ================================================
   CTA SECTION - FULL WIDTH COM IMAGEM
   ================================================ */

.cta-modern {
    padding: 0;
    background: var(--vanilla-silk-dark);
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Imagem de fundo full-width */
.cta-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/dra-rafaela-cta.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Overlay escuro semi-transparente */
.cta-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(58, 36, 21, 0.85) 0%, rgba(58, 36, 21, 0.65) 50%, rgba(58, 36, 21, 0.4) 100%);
    z-index: 1;
}

.cta-content-modern {
    text-align: left;
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: var(--spacing-3xl) var(--spacing-xl);
}

.cta-title-modern {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.cta-subtitle-modern {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
    line-height: 1.6;
}

/* Linha decorativa no CTA */
.cta-content-modern .cta-subtitle-modern::before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--toffee-gold);
    margin-bottom: var(--spacing-md);
}

.btn-cta-whatsapp-modern {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--success-green);
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: var(--radius-full);
    font-size: 1.25rem;
    font-weight: 700;
    transition: var(--transition-base);
    margin-bottom: 0;
}

.btn-cta-whatsapp-modern:hover,
.btn-cta-whatsapp-modern:focus-visible {
    background: var(--success-green-hover);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Contact Info Box */
.contact-info-box-modern {
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 auto;
    background: var(--warm-cream);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    margin-top: var(--spacing-xl);
}

.contact-info-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: #440407;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

/* Container para múltiplos endereços */
.contact-locations-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

/* Card individual de endereço */
.contact-location-card {
    background: rgba(255, 255, 255, 0.5);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 2px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-location-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--espresso-bronze);
    margin-bottom: var(--spacing-sm);
    text-align: center;
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--espresso-bronze);
}

.contact-info-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.contact-info-item-modern {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    text-align: left;
}

.contact-info-item-modern i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-top: 0.25rem;
}

.contact-label-modern {
    font-size: 0.875rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.25rem;
}

.contact-value-modern {
    font-size: 0.95rem;
    color: var(--midnight-navy);
}

.contact-map-modern {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-top: auto;
    min-height: 280px;
    aspect-ratio: 16 / 10;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-map-modern iframe {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 280px;
    display: block;
    border: 0;
}


@media (max-width: 992px) {

    /* Contact Info */
    .contact-info-grid-modern {
        grid-template-columns: 1fr;
    }

    /* Endereços em coluna no mobile */
    .contact-locations-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* CTA Section Mobile */
    .cta-modern {
        min-height: 500px;
    }

    .cta-modern::after {
        background: linear-gradient(180deg, rgba(58, 36, 21, 0.9) 0%, rgba(58, 36, 21, 0.7) 100%);
    }

    .cta-content-modern {
        text-align: center;
        padding: var(--spacing-2xl) var(--spacing-md);
    }

    .cta-title-modern {
        font-size: 2rem;
    }

    .cta-subtitle-modern {
        font-size: 1.1rem;
    }

    .cta-content-modern .cta-subtitle-modern::before {
        margin: 0 auto var(--spacing-md);
    }

    .contact-info-box-modern {
        padding: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }

    .contact-location-card {
        padding: var(--spacing-md);
        box-sizing: border-box;
    }

    .contact-map-modern iframe {
        min-height: 200px;
    }

    .contact-info-item-modern {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info-item-modern i {
        margin-bottom: 0.5rem;
    }
}