/* ===== GLOBAL VARIABLES ===== */
:root {
    /* Colors */
    --red-color: #dc2626;
    --light-red: #ef4444;
    --green-color: #164432;
    --white-color: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e5e5e5;
    --dark-gray: #374151;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Borders */
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 1.5rem;
    --border-radius-xl: 2rem;
    
    /* Shadows */
    --shadow-soft: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Heights */
    --header-height: 100px;
}

/* ===== RESET & GENERAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--green-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

.scroll-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--red-color), white);
    width: 0%;
    transition: width var(--transition-fast);
}

/* ===== HEADER ===== */
.header {
    background-color: var(--red-color);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-medium);
    height: var(--header-height);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing-md);
}

.header-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: calc(var(--header-height) - var(--spacing-md));
    aspect-ratio: fixed;
}

/* Desktop Navigation */
.header-nav {
    display: flex;
    gap: var(--spacing-md);
}

.header-nav a {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
    position: relative;
    padding: var(--spacing-xs) 0;
}

.header-nav a:hover {
    transform: translateY(-2px);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width var(--transition-normal);
}

.header-nav a:hover::after {
    width: 100%;
}

/* Header Buttons */
.header-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-emergency {
    background: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 0.9rem;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.emergency-icon {
    font-size: 1.1rem;
}

.btn-emergency:hover {
    background: var(--white-color);
    color: var(--red-color);
    transform: translateY(-2px);
}

.btn-emergency:hover .emergency-icon {
    color: var(--red-color);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Mobile Menu Button - HIDDEN ON DESKTOP */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 1001;
    background: none;
    border: none;
    position: relative;
    justify-content: center;
    align-items: center;
}

.menu-line {
    width: 25px;
    height: 3px;
    background-color: var(--white-color);
    margin: 3px 0;
    transition: all var(--transition-normal);
    transform-origin: center;
    border-radius: 2px;
}

.mobile-menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--red-color);
    z-index: 1000;
    padding: var(--spacing-xl);
    padding-top: 6rem;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: var(--spacing-lg);
}

.mobile-menu-logo {
    width: 180px;
    height: auto;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-link {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.mobile-menu-link:hover {
    color: var(--green-color);
    padding-left: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-actions {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
}

.btn-emergency-mobile {
    width: 100%;
    background: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.btn-emergency-mobile:hover {
    background: var(--white-color);
    color: var(--red-color);
    transform: translateY(-2px);
}

.mobile-menu-contact {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
}

.mobile-menu-contact h4 {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.mobile-menu-contact p {
    color: var(--white-color);
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.mobile-menu-contact i {
    margin-right: 8px;
    width: 16px;
    color: white;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin-top: var(--header-height);
    width: 100%;
}

/* ===== HERO SECTION WITH CAROUSEL ===== */
.hero-section {
    width: 100vw;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: var(--light-gray);
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: auto;
    display: flex;
    align-items: center;
}

.carousel {
    width: 600%;
    height: auto;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
    width: 100vw;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
}

/* Banners responsivos */
.desktop-banner {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.mobile-banner {
    display: none;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(220, 38, 38, 0.9);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.carousel-btn:hover {
    background: rgba(220, 38, 38, 1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    opacity: 1;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.3);
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    border: none;
    padding: 0;
}

.carousel-indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carousel-indicator.active {
    background-color: var(--white-color);
    border-color: var(--white-color);
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6),
                0 0 30px rgba(255, 255, 255, 0.3);
}

/* Carousel Transition State */
.carousel.transitioning {
    pointer-events: none;
}

/* ===== SCROLLING INFO BAR ===== */
.scrolling-info {
    background: var(--red-color);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: var(--spacing-sm) 0;
    margin-top: 0;
}

.scrolling-hours {
    background: var(--red-color);
}

.scrolling-info-content {
    display: inline-flex;
    animation: slideInfinite linear infinite;
    align-items: center;
    gap: 60px;
    white-space: nowrap;
}

.scrolling-info-text {
    font-size: 1.75rem;
    color: var(--white-color);
    font-weight: 500;
    white-space: nowrap;
}

.scrolling-info-separator {
    font-size: 2rem;
    opacity: 0.7;
    color: var(--white-color);
}

/* ANIMAÇÃO INFINITA */
@keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-title {
    font-size: 2.8rem;
    color: var(--green-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--green-color);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: var(--spacing-xxl) 0;
    background: var(--white-color);
}

/* Products Carousel */
.products-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius-xl);
    background: var(--white-color);
    box-shadow: var(--shadow-medium);
    padding: 0 80px;
}

.products-carousel-viewport {
    overflow: hidden;
    padding: 25px 0;
}

.products-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    gap: 15px;
}

.product-slide {
    flex: 0 0 188px;
    height: 180px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform var(--transition-normal);
    background: var(--light-gray);
    border: 2px solid transparent;
}

.product-slide:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: var(--shadow-medium);
}

.product-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform var(--transition-normal);
}

.product-slide:hover img {
    transform: scale(1.05);
}

/* Products Carousel Navigation Buttons */
.products-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--red-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.products-carousel-btn:hover {
    background: var(--green-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(22, 68, 50, 0.4);
}

.products-carousel-btn.prev {
    left: 15px;
}

.products-carousel-btn.next {
    right: 15px;
}

.products-carousel-btn:disabled {
    background: rgba(148, 163, 184, 0.5);
    cursor: not-allowed;
    transform: translateY(-50%);
}

.products-carousel-btn:disabled:hover {
    background: rgba(148, 163, 184, 0.5);
    transform: translateY(-50%);
    box-shadow: none;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--spacing-xxl) 0;
    background: var(--white-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.about-text h2 {
    color: var(--green-color);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--green-color);
    text-align: justify;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--red-color);
}

.value-title {
    color: var(--green-color);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}

.value-description {
    color: var(--green-color);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

.about-visual {
    position: sticky;
    top: 140px;
    align-self: flex-start;
    transition: all var(--transition-normal);
}

.experience-card {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
    color: var(--white-color);
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(220, 38, 38, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.experience-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white-color);
    text-shadow: white 0.1em 0.1em 0.2em;
    display: block;
    margin-bottom: 1rem;
}

.experience-text {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white-color);
}

.experience-description {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--white-color);
}

.experience-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white-color);
    text-shadow: var(--white-color) 0em 0em 0.25em;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
    color: var(--white-color);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: var(--spacing-xxl) 0;
    background: var(--white-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white-color);
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(220, 38, 38, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red-color), var(--light-red));
    border-radius: var(--border-radius-md);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
}

.service-title {
    color: var(--green-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-description {
    color: var(--green-color);
    line-height: 1.7;
    font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--white-color);
    color: var(--green-color);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--medium-gray);
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    color: var(--green-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-description,
.footer-link {
    color: var(--green-color);
    text-decoration: none;
    line-height: 1.8;
    font-size: 0.95rem;
    text-align: justify;
}

.footer-link:hover {
    color: var(--red-color);
    transition: color var(--transition-normal);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.footer-contact-item i {
    color: var(--red-color);
    min-width: 24px;
    font-size: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--red-color);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px);
    background: var(--green-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ANVISA LOGO CONTAINER */
.anvisa-logo {
    max-width: 80%;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    justify-self: center;
    border-radius: 25px;
}

.anvisa-text {
    font-weight: 600;
    color: var(--green-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.anvisa-subtext {
    color: var(--green-color);
    font-size: 0.8rem;
    line-height: 1.4;
    text-align: center;
    opacity: 75%;
}

.footer-bottom {
    border-top: 1px solid var(--medium-gray);
    padding-top: 2rem;
    text-align: center;
    color: var(--green-color);
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
}

.footer-column {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 25px;
    padding: 2rem;
}

.footer-column:last-child {
    align-content: center;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-right {
    animation: slideInRight 0.8s ease-out;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Tablets and Small Desktops (1024px and below) */
@media screen and (max-width: 1024px) {
    .logo-image {
        width: 180px;
        height: auto;
    }

    .header-nav {
        gap: var(--spacing-lg);
    }

    .header-nav a {
        font-size: 0.9rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        position: relative;
        top: auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .product-slide {
        flex: 0 0 220px;
        height: 200px;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    .products-carousel {
        padding: 0 50px;
    }
}

/* Mobile Devices (768px and below) */
@media screen and (max-width: 768px) {
    :root {
        --header-height: 80px;
    }
    
    /* Header */
    .header {
        height: var(--header-height);
    }

    .header-container {
        padding: 0 var(--spacing-sm);
        padding-top: 8px;
        margin-left: 8px;
        margin-right: 8px;
    }

    .logo-image {
        width: 150px;
        height: auto;
    }

    /* Hide desktop navigation and actions on mobile */
    .header-nav,
    .header-actions {
        display: none !important;
    }

    /* Show mobile menu button */
    .mobile-menu-btn {
        display: flex;
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Menu */
    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu-header {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-xs);
        padding-bottom: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }

    .mobile-menu-logo {
        width: 150px;
    }

    .mobile-menu-title {
        font-size: 1.1rem;
    }

    .mobile-menu-link {
        font-size: 1rem;
        padding: 1rem 0;
    }

    .btn-emergency-mobile {
        padding: var(--spacing-sm);
        font-size: 0.95rem;
    }

    .mobile-menu-contact {
        padding: var(--spacing-sm);
    }

    .mobile-menu-contact h4 {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-xs);
    }

    .mobile-menu-contact p {
        font-size: 0.85rem;
        margin: 0.4rem 0;
    }

    /* Main Content */
    .main-content {
        margin-top: var(--header-height);
    }

    /* Banners responsivos para mobile */
    .desktop-banner {
        display: none !important;
    }
    
    .mobile-banner {
        display: block !important;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .carousel-slide {
        height: auto;
        min-height: 300px;
    }

    /* Carousel Mobile Optimizations */
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        min-width: 44px;
        min-height: 44px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-indicators {
        bottom: 20px;
        gap: 12px;
        padding: 10px 18px;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
        min-width: 10px;
        min-height: 10px;
    }

    /* Products Carousel */
    .product-slide {
        flex: 0 0 160px !important;
        height: 160px !important;
    }

    .products-carousel-viewport {
        padding: 20px 0;
    }

    .products-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .products-carousel-btn.prev {
        left: 8px;
    }

    .products-carousel-btn.next {
        right: 8px;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .service-card {
        padding: var(--spacing-lg);
    }

    /* ANVISA Logo */
    .anvisa-logo-container {
        padding: 1rem;
    }
    
    .anvisa-logo {
        max-width: 140px;
    }
    
    .anvisa-text {
        font-size: 1rem;
    }
    
    .anvisa-subtext {
        font-size: 0.85rem;
    }

    /* Typography */
    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .experience-number {
        font-size: 3rem;
    }

    .experience-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

/* Small Mobile Devices (480px and below) */
@media screen and (max-width: 480px) {    
    /* Banners para telas muito pequenas */

    .body{
        max-width: 100%;
        overflow-x: hidden;
        position: relative;
    }

    .carousel-slide {
        min-height: 250px;
    }
    
    /* Scrolling Info */
    .scrolling-info-text {
        font-size: 12px;
    }

    .scrolling-info-separator {
        font-size: 10px;
    }

    .scrolling-info-content {
        gap: 20px;
    }

    /* Logo */
    .logo-image {
        width: 130px;
    }

    /* Carousel Mobile Optimizations */
    .carousel-btn {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.2rem !important;
    }
    
    .carousel-prev {
        left: 8px;
    }
    
    .carousel-next {
        right: 8px;
    }
    
    .carousel-indicators {
        bottom: 12px;
        gap: 8px;
        padding: 6px 12px;
    }
    
    .carousel-indicator {
        width: 8px;
        height: 8px;
    }

    /* Mobile Menu */
    .mobile-menu {
        width: 90%;
        max-width: none;
        padding: var(--spacing-md);
        padding-top: 5rem;
    }

    /* Products Carousel */
    .products-carousel {
        padding: 0 40px;
    }

    .product-slide {
        flex: 0 0 140px !important;
        height: 140px !important;
    }

    .products-carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .products-carousel-btn.prev {
        left: 5px;
    }

    .products-carousel-btn.next {
        right: 5px;
    }

    /* Container */
    .container {
        padding: 0 var(--spacing-sm);
    }

    /* Service Card */
    .service-card {
        padding: var(--spacing-md);
    }

    /* ANVISA Logo */
    .anvisa-logo-container {
        padding: 0.8rem;
    }
    
    .anvisa-logo {
        max-width: 120px;
    }

    .anvisa-subtext {
        font-size: 0.8rem;
    }

    /* Typography */
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

.debug-overflow * {
    outline: 2px solid green !important;
}