/* ========================================
   AXIS PRIME MEDICAL INSTITUTE - STYLES
   ======================================== */

/* === ROOT VARIABLES === */
:root {
    /* Color Palette - Axis Prime Brand Colors */
    --primary-color: #1B6B5F;
    --primary-dark: #145248;
    --primary-light: #7FA99B;
    --secondary-color: #B8BFC0;
    --accent-color: #7FA99B;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-gradient-start: #DFF2ED;
    --bg-gradient-end: #B8E6DD;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #7FA99B;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* === GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

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

a {
    text-decoration: none;
    transition: var(--transition);
}

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

.section-padding {
    padding: var(--section-padding);
}

/* === BUTTONS === */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: none;
    text-transform: none;
    letter-spacing: 0.3px;
}

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

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

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

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* === NAVBAR === */
#mainNav {
    padding: 0.75rem 0;
    transition: var(--transition);
    background-color: var(--white) !important;
    box-shadow: var(--shadow-sm);
}

#mainNav.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    padding: 0.5rem 0;
}

.brand-logo {
    height: 65px;
    width: auto;
    transition: var(--transition);
}

.brand-logo:hover {
    transform: scale(1.02);
}

#mainNav.scrolled .brand-logo {
    height: 55px;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* ── Specialty dropdown ── */
.nav-dropdown {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: .5rem;
    min-width: 240px;
    margin-top: .35rem !important;
}

.nav-dropdown__item {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .6rem .85rem;
    border-radius: 8px;
    color: var(--text-dark) !important;
    font-family: var(--font-primary);
    font-size: .9rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-dropdown__item:hover,
.nav-dropdown__item:focus {
    background: var(--bg-light);
    color: var(--primary-color) !important;
}

.nav-dropdown__icon {
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
}

/* Remove Bootstrap's default dropdown caret underline on toggle */
.nav-item.dropdown > .nav-link.dropdown-toggle::after {
    width: 0 !important;
}

.nav-item.dropdown:hover > .nav-link,
.nav-item.dropdown .nav-link.show {
    color: var(--primary-color) !important;
}

/* Mobile: show as plain stacked links inside collapse */
@media (max-width: 991px) {
    .nav-dropdown {
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--primary-light);
        border-radius: 0;
        margin: .25rem 0 .25rem 1rem !important;
        padding: .25rem 0;
        min-width: unset;
    }

    .nav-dropdown__item {
        padding: .45rem .75rem;
        font-size: .88rem;
    }
}

/* Language Selector */
.language-selector {
    gap: 4px;
}

.lang-btn {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    overflow: hidden;
}

.lang-btn:hover {
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.lang-btn.active {
    border-color: var(--primary-color);
    background-color: rgba(27, 107, 95, 0.08);
    box-shadow: var(--shadow-sm);
    border-width: 1.5px;
}

.lang-btn.active .flag-img {
    transform: scale(1.05);
}

.flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

.flag-emoji {
    font-size: 1.1rem;
    transition: var(--transition);
    line-height: 1;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    padding-top: 120px;
    padding-bottom: 40px;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Hero Carousel */
.hero-carousel {
    animation: fadeInRight 0.8s ease;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-carousel .carousel {
    border-radius: var(--border-radius);
}

.hero-carousel .carousel-inner {
    border-radius: var(--border-radius);
}

.hero-carousel .carousel-item {
    transition: transform 0.6s ease-in-out;
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
}

/* Controles do carrossel */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(27, 107, 95, 0.8);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 1;
}

.hero-carousel .carousel-control-prev {
    left: 15px;
}

.hero-carousel .carousel-control-next {
    right: 15px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: var(--primary-color);
}

/* Indicadores do carrossel */
.hero-carousel .carousel-indicators {
    bottom: 15px;
    margin-bottom: 0;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
    transition: var(--transition);
}

.hero-carousel .carousel-indicators .active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.image-placeholder,
.about-image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--border-radius);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 8rem;
    box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--primary-color);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === SECTION HEADERS === */
.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* === ABOUT SECTION === */
.about-section {
    background-color: var(--white);
}

.about-image-wrapper {
    position: relative;
}

.about-image-placeholder {
    aspect-ratio: 4/5;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--success-color);
    font-size: 1.25rem;
}

/* === BENEFITS SECTION === */
.benefit-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.benefit-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-text {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* === SERVICES SECTION === */
.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-tagline {
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
    padding-top: 1rem;
    border-top: 2px solid var(--bg-light);
    margin-top: auto;
}

/* === HOW IT WORKS SECTION === */
.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    font-family: var(--font-display);
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-description {
    color: var(--text-light);
}

/* === TESTIMONIALS SECTION === */
.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    border-top: 2px solid var(--bg-light);
    padding-top: 1.5rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.author-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* === FAQ SECTION === */
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    background-color: var(--white);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button::after {
    filter: brightness(0) saturate(100%);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(100%);
}

.accordion-body {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* === CONTACT SECTION === */
.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details p {
    margin-bottom: 0.25rem;
    color: var(--text-light);
}

.contact-details a {
    color: var(--text-light);
}

.contact-details a:hover {
    color: var(--primary-color);
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 95, 126, 0.15);
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    display: block;
}

/* === FOOTER === */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--primary-light);
}

/* Footer Map */
.footer-map {
    margin-top: 0;
}

.footer-map h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    font-weight: 600;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: var(--transition);
}

.map-container:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 250px;
    border: none;
}

.map-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.map-link,
.review-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    border-top: 2px solid rgba(127, 169, 155, 0.3);
}

.map-link {
    background: rgba(27, 107, 95, 0.95);
}

.map-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-top-color: var(--primary-light);
}

.review-link {
    background: rgba(234, 67, 53, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.review-link:hover {
    background: #EA4335;
    color: var(--white);
    border-top-color: #F87168;
}

.map-link i,
.review-link i {
    font-size: 1.2rem;
}

.review-link i {
    color: #58a540;
}

@media (max-width: 576px) {
    .map-actions {
        grid-template-columns: 1fr;
    }
    
    .review-link {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    justify-content: flex-end;
}

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

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

/* === RESPONSIVE DESIGN === */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-md);
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-section {
        min-height: 70vh;
        padding-top: 120px;
        padding-bottom: 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .image-placeholder,
    .about-image-placeholder {
        font-size: 5rem;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .hero-carousel .carousel-item img {
        height: 300px;
    }
    
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-carousel .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
    }
    
    .footer-map {
        margin-top: 2rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

/* === UTILITY CLASSES === */
.bg-light {
    background-color: var(--bg-light) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* === SMOOTH TRANSITIONS === */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === FLOATING BUTTONS === */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

/* Book Consultation Button */
.book-float {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(27, 107, 95, 0.4);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: visible;
}

.book-float:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(27, 107, 95, 0.6);
}

.book-float i {
    line-height: 1;
    transition: var(--transition);
}

/* Book Consultation Tooltip */
.book-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(27, 107, 95, 0.4);
    pointer-events: none;
}

.book-float:hover .book-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

/* Arrow do tooltip Book */
.book-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-color);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.button-text {
    display: none;
}

/* WhatsApp Button */
.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: visible;
}

.whatsapp-float:hover {
    background: #20BA5A;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    line-height: 1;
    transition: var(--transition);
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #25D366;
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

/* Arrow do tooltip */
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #25D366;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

/* Animação de pulso para WhatsApp */
@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-float {
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    animation: none;
}

/* Responsivo */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .book-float {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .book-tooltip,
    .whatsapp-tooltip {
        font-size: 0.85rem;
        padding: 10px 16px;
        right: 70px;
    }
    
    .book-float:hover .book-tooltip,
    .whatsapp-float:hover .whatsapp-tooltip {
        right: 75px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 140px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .book-tooltip,
    .whatsapp-tooltip {
        display: none;
    }
}

/* ================================================
   IV DRIP MENU CARDS
   ================================================ */

.iv-menu-section {
    background: var(--white);
}

/* ── Card ── */
.iv-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.iv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

/* ── "Mais Pedido" badge ── */
.iv-card__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--primary-color);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: 50px;
}

/* ── Header: emoji + title ── */
.iv-card__header {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
}

.iv-emoji {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: .1rem;
}

.iv-card__name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 .25rem;
    line-height: 1.25;
}

.iv-card__sub {
    font-family: var(--font-primary);
    font-size: .85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* ── Ingredient pills ── */
.iv-card__ingredients {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.iv-pill {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: .72rem;
    font-weight: 600;
    padding: .25rem .65rem;
    border-radius: 50px;
    white-space: nowrap;
}

/* ── Benefits list ── */
.iv-card__benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.iv-card__benefits li {
    font-family: var(--font-primary);
    font-size: .9rem;
    color: var(--text-light);
    padding-left: 1.35rem;
    position: relative;
    line-height: 1.45;
}

.iv-card__benefits li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: .15rem;
    color: var(--primary-color);
    font-size: .6rem;
}

/* ── Footer: price + time ── */
.iv-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.iv-card__price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.iv-card__price span {
    font-family: var(--font-primary);
    font-size: .95rem;
    font-weight: 600;
    color: var(--primary-color);
    opacity: .7;
}

.iv-card__time {
    font-family: var(--font-primary);
    font-size: .82rem;
    color: var(--text-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .35rem;
}

.iv-card__time i {
    color: var(--primary-light);
    font-size: .9rem;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .iv-card {
        padding: 1.5rem;
    }

    .iv-card__name {
        font-size: 1.05rem;
    }

    .iv-emoji {
        font-size: 1.75rem;
    }

    .iv-card__price {
        font-size: 1.4rem;
    }
}

/* ================================================
   BOOSTER INJECTIONS CARD
   ================================================ */

/* Wide card — inherits .service-card, just adds layout */
.booster-card {
    gap: 0;
}

/* Top row: icon + title/subtitle */
.booster-card__top {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.booster-card__top .service-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

/* 4-column mini-card grid */
.booster-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
    margin-bottom: 1.75rem;
}

/* Each mini-card */
.booster-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .35rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: .875rem .5rem;
    transition: var(--transition);
}

.booster-item:hover {
    border-color: var(--primary-color);
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.booster-emoji {
    font-size: 1.5rem;
    line-height: 1;
}

.booster-name {
    font-family: var(--font-display);
    font-size: .85rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.booster-sub {
    font-family: var(--font-primary);
    font-size: .75rem;
    color: var(--text-light);
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 991px) {
    .booster-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .booster-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booster-card__top {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .booster-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .5rem;
    }

    .booster-item {
        padding: .75rem .375rem;
    }

    .booster-emoji {
        font-size: 1.25rem;
    }

    .booster-name {
        font-size: .78rem;
    }

    .booster-sub {
        font-size: .7rem;
    }
}

/* ── Hormone card 2-column grid variant ── */
.booster-grid--2col {
    grid-template-columns: repeat(2, 1fr);
}

.booster-item--tall {
    align-items: flex-start;
    text-align: left;
    padding: 1rem 1.1rem;
    gap: .5rem;
}

.booster-item--tall .booster-emoji {
    font-size: 1.75rem;
}

.booster-item--tall .booster-name {
    font-size: .9rem;
}

.booster-item--tall .booster-sub {
    font-size: .8rem;
    line-height: 1.5;
}

@media (max-width: 575px) {
    .booster-grid--2col {
        grid-template-columns: 1fr;
    }
}

/* ── Weight loss checklist ── */
.weight-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    flex-grow: 1;
}

.weight-checklist li {
    font-family: var(--font-primary);
    font-size: .9rem;
    color: var(--text-light);
    padding-left: 1.6rem;
    position: relative;
    line-height: 1.45;
}

.weight-checklist li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
    font-size: .8rem;
}
