:root {
    --primary-color: #005b8e;
    --secondary-color: #009bd8;
    --accent-color: #00a8e8;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f4faff;
    --footer-bg: #005b8e;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

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

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

.btn-light {
    border-color: var(--white);
    color: var(--primary-color);
    background: var(--white);
}

.btn-light:hover {
    background: transparent;
    color: var(--white);
}

.btn-small {
    padding: 8px 20px;
    font-size: 12px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: none;
    position: absolute;
    width: 100%;
    z-index: 1000;
    top: 0;
}

.header-container {
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    height: 100px;
}

.nav {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: var(--secondary-color);
}

.nav-list a:hover::after {
    width: 100%;
}

.mobile-menu-icon {
    display: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    margin-left: 20px;
}

/* Hero Section */
.hero {
    background: url('../assets/images/back.jpg?v=20260210');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 800px;
    padding: 450px 0 0 0;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero-container-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    height: 100%;
}

.hero-text {
    flex: 1;
    padding-right: 20px;
    padding-bottom: 50px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
}

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

.hero h2 {
    color: #3e5060;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 14px;
}

.hero .btn-primary {
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 91, 142, 0.3);
}

/* Ticker */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-color);
    padding: 15px 0;
    white-space: nowrap;
}

.ticker {
    display: inline-block;
    animation: marquee 35s linear infinite;
}

.ticker__item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Specialties Section */
.specialties {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.specialties .section-header {
    margin-bottom: 60px;
}

.specialties h3 {
    font-size: 32px;
    color: #a0c4d6;
    margin-bottom: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.specialties h3 span {
    color: var(--primary-color);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

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

.specialty-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 91, 142, 0.05);
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 91, 142, 0.1);
    border-color: rgba(0, 91, 142, 0.1);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 5px 15px rgba(0, 91, 142, 0.2);
    transition: transform 0.3s ease;
}

.specialty-card:hover .icon-box {
    transform: rotateY(180deg);
}

.specialty-card h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.specialty-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--light-bg);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.rounded-image {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
    text-align: justify;
}



/* Professionals Section */
.professionals {
    padding: 80px 0;
}

.section-header h3 {
    font-size: 28px;
    color: #a0c4d6;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.section-header h3 span {
    color: var(--primary-color);
}

.professionals-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.doctor-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    width: 328px;
    max-width: 100%;
}

.doctor-card:hover {
    transform: translateY(-10px);
}

.doctor-img-container {
    height: 350px;
    width: 100%;
    overflow: hidden;
    background: #f0f0f0;
}

.doctor-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.doctor-card:hover .doctor-img-container img {
    transform: scale(1.05);
}

.doctor-info {
    padding: 20px;
    background: var(--primary-color);
    color: var(--white);
}

.doctor-info h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.doctor-info .crm {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.doctor-info .specialty {
    font-size: 14px;
    margin-bottom: 20px;
    height: 40px; 
}

.doctor-info .btn-outline {
    color: var(--white);
    border-color: var(--white);
    border-radius: 20px;
    padding: 8px 25px;
}

.doctor-info .btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Symptoms Section */
.symptoms {
    padding: 80px 0;
    background: #f0f8ff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.symptoms-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.symptoms-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 700;
}

.text-light-blue {
    color: #9ebdd4;
    font-weight: 700;
}

.text-dark-blue {
    color: var(--primary-color);
    font-weight: 800;
}

.symptoms-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px auto;
    align-items: center;
    max-width: 900px;
}

.symptom-item {
    background: var(--primary-color);
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: var(--white);
    font-weight: 600;
    width: 100%;
    text-align: center;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.symptom-item:hover {
    transform: translateY(-3px);
}

.symptoms-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 30px;
    font-weight: 400;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

.accordion {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.2);
}

.accordion-header i {
    font-size: 12px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.1);
}

.accordion-content p {
    padding: 20px 0;
    color: #e0e0e0;
}

/* Locations Section */
.locations {
    padding: 0;
}

.locations-container-flex {
    display: flex;
    flex-wrap: wrap;
}

.locations-info {
    flex: 1;
    padding: 80px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-title {
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.locations-info .subtitle {
    color: #888;
    margin-bottom: 40px;
    font-weight: 400;
}

.location-name {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.location-details .address {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-agendar {
    background-color: #005b8e;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-agendar:hover {
    background-color: #004a75;
}

.locations-map {
    flex: 1;
    min-height: 400px;
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    opacity: 0.8;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer h4 {
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-links-list li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5px;
}

.hours-list li span:last-child {
    color: var(--white);
}

/* Social Links */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #1a242f;
    color: var(--white);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

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

/* Footer Middle (Newsletter) */
.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-middle h3 {
    color: var(--white);
    font-size: 32px;
    font-weight: 400;
    font-family: serif;
}

.italic-highlight {
    font-style: italic;
    font-family: serif;
    color: #d4e9f7;
}

.newsletter-form {
    display: flex;
    background: var(--white);
    border-radius: 50px;
    padding: 5px;
    width: 100%;
    max-width: 450px;
}

.newsletter-form input {
    border: none;
    padding: 10px 20px;
    flex: 1;
    border-radius: 50px;
    outline: none;
}

.btn-subscribe {
    background: #dae8e2;
    color: #1a3c30;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-subscribe:hover {
    background: #c0dccf;
}

.footer-whatsapp-cta {
    text-align: center;
    margin: 10px 0 0;
}

.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25d366;
    border-color: #25d366;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
}

.whatsapp-cta-btn:hover {
    background-color: #1ebc57;
    border-color: #1ebc57;
    color: #fff;
}

.footer-copyright-bar {
    background: #000;
    width: 100%;
    padding: 20px 0;
    margin-top: 40px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin-left: 20px;
}

.back-to-top {
    color: var(--white);
    font-size: 13px;
}

@media (max-width: 768px) {
    header {
        background: transparent;
    }
    .header-container {
        justify-content: space-between;
    }
    
    .nav {
        position: relative;
        margin-left: auto;
    }
    
    .nav-list {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        height: 100vh;
        width: 80%;
        max-width: 360px;
        background: var(--white);
        flex-direction: column;
        padding: 90px 20px 20px;
        box-shadow: -8px 0 20px rgba(0,0,0,0.15);
        gap: 12px;
        text-align: left;
        align-items: flex-start;
        z-index: 2000;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-list a {
        display: block;
        width: 100%;
        font-size: 16px;
        padding: 12px 0;
        text-align: left;
    }
    
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.25);
        z-index: 1500;
        display: none;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    .mobile-menu-icon {
        display: block;
    }
    
    .hero-container-flex,
    .about-container,
    .locations-container-flex,
    .insurance-container,
    .footer-top {
        flex-direction: column;
    }
    
    .hero {
        background: url('../assets/images/back_mobile.jpg?v=20260210');
        background-size: cover;
        background-position: center;
        height: 850px;
        padding: 0;
    }
    
    .hero-text {
        padding-right: 0;
        text-align: center;
        position: absolute;
        bottom: 60px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 30px;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 12px;
    }
    
    .hero .btn-primary {
        width: 100%;
        text-align: center;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    .locations-info {
        padding: 40px 20px;
    }
    
    .specialties {
        padding: 60px 0;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .specialty-card {
        padding: 25px 20px;
    }
    
    .doctor-card {
        width: 100%;
        max-width: 360px;
    }
    
    .doctor-img-container {
        height: 380px;
    }
    
    .symptoms {
        padding: 60px 0;
    }
    
    .symptoms-title {
        font-size: 24px;
    }
    
    .symptom-item {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-bottom-links a {
        margin-left: 0;
    }
    
    .newsletter-form {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        background: transparent;
        padding: 0;
        border-radius: 0;
        max-width: 100%;
    }
    
    .newsletter-form input {
        margin-bottom: 5px;
        width: 100%;
        box-sizing: border-box;
        border-radius: 12px;
    }
    
    .btn-subscribe {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
        border-radius: 12px;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    left: auto;
    padding: 14px 32px;
    bottom: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.whatsapp-float:hover {
    background-color: #1ebc57;
}

.whatsapp-float i {
    font-size: 18px;
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
    padding: 20px;
    z-index: 1500;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-content p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.cookie-banner-link {
    color: var(--primary-color);
    font-weight: 600;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
}

.cookie-settings {
    background: #ffffff;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.cookie-reject {
    background: #e5f0ff;
    color: var(--primary-color);
}

.cookie-accept {
    background: #0086ff;
    color: #ffffff;
}

.cookie-btn:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        align-items: flex-start;
    }
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.6); 
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    position: relative;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-color);
    text-decoration: none;
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.modal-header p {
    color: #666;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.input-icon-group {
    position: relative;
}

.input-icon-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.input-icon-group.textarea-group i {
    top: 20px;
}

.input-icon-group input,
.input-icon-group select,
.input-icon-group textarea {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
    font-family: var(--font-body);
}

.input-icon-group input:focus,
.input-icon-group select:focus,
.input-icon-group textarea:focus {
    border-color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Doctor Modal Styles */
.doctor-modal-content {
    max-width: 600px;
}

.doctor-modal-header {
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.doctor-modal-header h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 24px;
}

.doctor-modal-header .crm {
    color: #888;
    font-size: 14px;
    margin-bottom: 5px;
}

.doctor-modal-header .specialty {
    color: var(--secondary-color);
    font-weight: 600;
}

.doctor-modal-body h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
    border-left: 3px solid var(--secondary-color);
    padding-left: 10px;
}

.bio-section {
    margin-bottom: 25px;
}

.schedule-section {
    margin-bottom: 25px;
}

.schedule-section p, .bio-section p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.doctor-social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-btn i {
    font-size: 18px;
}

#modalDoctorInsta {
    background-color: #ffeef4;
    color: #c13584;
}

#modalDoctorInsta:hover {
    background-color: #c13584;
    color: white;
}

#modalDoctorLinkedin {
    background-color: #eef7ff;
    color: #0077b5;
}

#modalDoctorLinkedin:hover {
    background-color: #0077b5;
    color: white;
}

/* Health Plans */
.health-plans {
    background: var(--white);
    padding: 60px 0;
}
.plans-subtitle {
    color: #6b7c93;
    margin-top: 10px;
}
.plans-marquee-wrap {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}
.plans-marquee {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: plansMarquee 18s linear infinite;
    will-change: transform;
}
.plan-item img {
    height: 66px;
    width: auto;
    display: block;
    opacity: 1;
    transition: transform 0.2s ease;
}
.plan-item img:hover {
    transform: scale(1.1);
}
@keyframes plansMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .plans-marquee {
        gap: 24px;
        animation-duration: 24s;
    }
    .plan-item img {
        height: 54px;
    }
}
