/* 
 * CSS - Dr. Ricardo Fasolo
 * Design Premium, Dinâmico e Responsivo (Vanilla CSS)
 */

/* ==========================================================================
   CSS Variables (Design Tokens)
   ========================================================================== */
   :root {
    /* Colors from Logo */
    --clr-primary: #D49A6A; /* Logo Tan/Orange */
    --clr-primary-light: #E2AF85; 
    --clr-primary-dark: #BA8051; 
    --clr-primary-bg: #FDF6F0; 
    
    --clr-accent: #2B2A29; /* Logo Dark Grey */
    --clr-accent-light: #E1E1E1; /* Light Grey */
    
    --clr-whatsapp: #25D366;
    --clr-whatsapp-dark: #128C7E;
    
    /* Typographic Colors */
    --clr-text-main: #1E293B; /* Slate 800 */
    --clr-text-muted: #475569; /* Slate 600 */
    --clr-text-light: #94A3B8; /* Slate 400 */
    
    /* Backgrounds */
    --clr-bg-main: #FFFFFF;
    --clr-bg-alt: #F8FAFC; /* Slate 50 */
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout & Spacing */
    --max-width: 1200px;
    --header-height: 80px;
    --mobile-nav-height: 70px;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-pill: 9999px;
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 0; /* Changed dynamically by JS on mobile */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-text-main);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--clr-text-muted);
}

a {
    text-decoration: none;
    color: var(--clr-primary);
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.bg-light { background-color: var(--clr-bg-alt); }
.mt-2 { margin-top: 0.5rem; }
.text-sm { font-size: 0.875rem; }

/* ==========================================================================
   Components: Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    font-size: 1rem;
    text-align: center;
}

.btn:active {
    transform: translateY(2px);
}

.btn-primary {
    background-color: var(--clr-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--clr-primary-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary {
    background-color: var(--clr-accent-light);
    color: var(--clr-accent);
}

.btn-secondary:hover {
    background-color: #D1D1D1; /* Grey */
}

.btn-outline {
    background-color: transparent;
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.btn-outline:hover {
    background-color: var(--clr-primary-bg);
}

.btn-outline-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border: 1px solid var(--clr-text-light);
    color: var(--clr-text-muted);
    border-radius: var(--radius-pill);
}

.btn-outline-sm:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.btn-whatsapp {
    background-color: var(--clr-whatsapp);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--clr-whatsapp-dark);
    color: white;
    box-shadow: 0 15px 25px -5px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn i {
    font-size: 1.25em;
}

/* ==========================================================================
   Header & Desktop Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: box-shadow var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--clr-primary-dark);
}

.logo-specialty {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.header-logo {
    height: 60px;
    width: auto;
}

.footer-logo {
    height: 60px;
    width: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background-color: white;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--clr-text-main);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--clr-primary);
    transition: width var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--clr-primary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding-top: calc(var(--header-height) + 6rem);
    padding-bottom: 6rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-image: url('../img/2023-03-26-ricardo-fasolo-22_cc2680b75d3f.jpg');
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    background-color: #111;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 70%, transparent 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: block;
}

.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: var(--clr-primary-bg);
    color: var(--clr-primary-dark);
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
    color: #E2E8F0;
}

.hero-credentials {
    color: #FFFFFF;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
    transition: transform 0.7s ease;
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

.decoration-box {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--clr-primary-light);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.5;
}

/* ==========================================================================
   Sobre (About) Section
   ========================================================================== */
.sobre {
    padding: 6rem 0;
}

.sobre-container {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    align-items: center;
}

.sobre-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.section-title {
    font-size: 2.5rem;
    color: var(--clr-primary-dark);
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--clr-accent);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.sobre-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.doctoralia-card {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--clr-bg-alt);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(0,0,0,0.05);
}

.stars {
    color: #FBBF24; /* Amber 400 */
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.doctoralia-info p {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ==========================================================================
   Locais de Atendimento
   ========================================================================== */
.atendimento {
    padding: 6rem 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.location-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-img-top {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hover-lift:hover .card-img-top img {
    transform: scale(1.05);
}

.placeholder-img {
    background: linear-gradient(135deg, var(--clr-primary-bg), var(--clr-accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--clr-primary);
    opacity: 0.5;
}

.card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    color: var(--clr-primary-dark);
    margin-bottom: 0.25rem;
}

.clinic-name {
    font-weight: 600;
    color: var(--clr-text-main);
    margin-bottom: 1.5rem;
}

.info-list {
    margin-bottom: 2rem;
    flex: 1;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--clr-text-muted);
}

.info-list i {
    color: var(--clr-primary);
    font-size: 1.25rem;
    margin-top: 0.2rem;
}

.card-actions {
    margin-top: auto;
}

/* ==========================================================================
   Call to Action (CTA)
   ========================================================================== */
.cta {
    background-color: var(--clr-primary-dark);
    padding: 5rem 0;
    color: white;
    text-align: center;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}

.cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    color: var(--clr-primary-bg);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #0F172A; /* Slate 900 */
    color: #CBD5E1; /* Slate 300 */
    padding-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand .logo-name {
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    color: #94A3B8;
}

.footer-social h4 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
}

.social-links a:hover {
    background-color: var(--clr-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0;
}

/* ==========================================================================
   Mobile Bottom Navigation
   ========================================================================== */
.d-mobile-only {
    display: none;
}

/* Desktop styles to hide elements strictly for mobile */
@media (min-width: 769px) {
    .d-none-mobile {
        display: inline-flex;
    }
}

/* ==========================================================================
   Responsive Design & Mobile App Experience
   ========================================================================== */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.75rem; }
    .sobre-container { gap: 3rem; }
    .cards-grid { gap: 1.5rem; }
}

@media (max-width: 768px) {
    .d-mobile-only {
        display: flex;
    }
    
    .d-none-mobile {
        display: none !important;
    }

    body {
        padding-bottom: calc(var(--mobile-nav-height) + 15px);
    }

    /* Header Nav hidden, simplified logo */
    .nav-links { display: none; }
    .navbar { height: auto; }
    .nav-content { justify-content: center; }
    .logo { align-items: center; text-align: center; padding: 25px 0; margin: 0 auto; }
    
    .hero {
        padding-top: 60px;
        padding-bottom: 3rem;
        min-height: auto;
        background-image: none !important;
        background-color: var(--clr-bg-main) !important;
        flex-direction: column;
        align-items: stretch;
    }

    .hero::before {
        width: 100%;
        height: 250px;
        position: relative;
        background: url('../img/2023-03-26-ricardo-fasolo-22_cc2680b75d3f.jpg') center 20% / cover no-repeat;
        margin-bottom: 1.5rem;
    }

    .hero-container {
        display: block;
        text-align: center;
    }

    .hero h1 { font-size: 2rem; color: #0F172A; }
    .hero p { max-width: 100%; margin: 0 auto 1.5rem; color: #475569; }
    
    .hero-credentials {
        color: #475569;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }
    
    .btn-large { width: 100%; }

    .image-wrapper img { aspect-ratio: 1/1; max-width: 300px; margin: 0 auto; border-radius: var(--radius-xl); object-position: top; }
    .decoration-box { display: none; }

    .sobre-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sobre-image { order: -1; max-width: 300px; margin: 0 auto; }
    .section-title::after { left: 50%; transform: translateX(-50%); }

    .doctoralia-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .social-links { justify-content: center; }

    /* The Real Magic: Mobile Bottom Navigation */
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: var(--mobile-nav-height);
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
        display: flex;
        justify-content: space-around;
        align-items: center;
        z-index: 1000;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding-bottom: env(safe-area-inset-bottom); /* iOS support */
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--clr-text-light);
        text-decoration: none;
        flex: 1;
        transition: color var(--transition-fast);
        padding: 0.5rem 0;
    }

    .nav-item i {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
        transition: transform 0.2s;
    }

    .nav-item span {
        font-size: 0.65rem;
        font-weight: 500;
    }

    .nav-item:hover, .nav-item.active {
        color: var(--clr-primary);
    }
    
    .nav-item.active i {
        transform: translateY(-2px);
    }

    /* Central Highlighted Button */
    .nav-item-center {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end; /* Push label to bottom */
        flex: 1.5; /* Takes slightly more space so others don't overlap it */
        color: var(--clr-text-main);
        height: 100%;
        padding-bottom: 0.4rem;
    }

    .fab-wa {
        position: absolute;
        top: -25px; /* Stand out of the bar */
        width: 60px;
        height: 60px;
        background-color: var(--clr-whatsapp);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
        border: 4px solid white;
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 10;
    }

    .nav-item-center:active .fab-wa {
        transform: scale(0.9);
    }

    .fab-label {
        font-size: 0.65rem;
        font-weight: 700;
        text-align: center;
        color: var(--clr-primary-dark);
        line-height: 1;
        margin-top: auto; /* Push down below the absolute circle */
    }

}

/* ==========================================================================
   Páginas Internas / Transtornos Psiquiátricos
   ========================================================================== */
.page-header {
    background-color: var(--clr-bg-alt);
    padding: calc(var(--header-height) + 4rem) 0 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.page-header h1 {
    font-size: 3rem;
    color: var(--clr-primary-dark);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.transtornos-section {
    padding: 5rem 0;
}

.transtornos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.transtorno-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.transtorno-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--clr-primary-light);
}

.transtorno-icon {
    width: 60px;
    height: 60px;
    background-color: var(--clr-primary-bg);
    color: var(--clr-primary-dark);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.transtorno-card h3 {
    font-size: 1.35rem;
    color: var(--clr-text-main);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.transtorno-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--clr-text-muted);
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.transtorno-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

@media (max-width: 992px) {
    .transtornos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .transtornos-grid {
        grid-template-columns: 1fr;
    }
    .page-header {
        padding: calc(var(--header-height) + 2rem) 0 3rem;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .page-header p {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Modal / Pop-up Informativo
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1.5rem;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: #ffffff;
    width: 100%;
    max-width: 650px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    max-height: 85vh;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-overlay.open .modal-container {
    transform: scale(1);
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--clr-primary-bg);
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--clr-primary-dark);
    margin: 0;
    font-family: var(--font-heading);
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--clr-text-light);
    cursor: pointer;
    transition: color var(--transition-fast), transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    color: var(--clr-primary-dark);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--clr-text-muted);
}

.modal-body p {
    margin-bottom: 1.25rem;
}

.modal-body h4 {
    color: var(--clr-text-main);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.modal-body ul {
    margin-bottom: 1.25rem;
    padding-left: 1.25rem;
    list-style-type: disc;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

.modal-footer {
    padding: 1.25rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    gap: 1rem;
    background-color: var(--clr-bg-alt);
}

/* Prevent body scrolling when modal is open */
body.modal-open {
    overflow: hidden;
}
