/**
 * L+ SISTEMAS - CSS COMPLETO E FUNCIONAL
 * Baseado no original, mas limpo e sem conflitos
 * Atualizado: 2026-01-06 - Footer limpo sem filosofia
 */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a20c7;
    --secondary: #0f0d1d;
    --accent: #3c72fc;
    --gradient: linear-gradient(135deg, #0a20c7, #1e3c72);
    --text-dark: #1a202c;
    --text-light: #718096;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--white);
    transition: var(--transition);
}

/* Container System */
.header-container,
.hero-container,
.about-container-modern,
.services-container,
.credibility-container,
.contact-container,
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: var(--transition);
    height: 70px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.header-brand .brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    padding: 10px;
    background: white;
    border: 2px solid #ff8c00;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    border-color: #ff7700;
}

.brand-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text-main,
.brand-text-sub {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 0.05em;
}

/* Navigation Desktop */
.header-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(10, 32, 199, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 32, 199, 0.4);
}

/* ===== MENU MOBILE - FUNCIONAL ===== */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid var(--primary);
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 10001;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:active {
    border-color: var(--accent);
    background: rgba(10, 32, 199, 0.1);
    transform: scale(1.05);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
    height: 16px;
}

.line {
    width: 100%;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* Animação do hambúrguer */
.mobile-menu-toggle.active .line1 {
    transform: rotate(45deg) translate(5px, 5px);
    background: #ef4444;
}

.mobile-menu-toggle.active .line2 {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active .line3 {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #ef4444;
}

.mobile-menu-toggle.active {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

/* Conteúdo do Menu Mobile */
.mobile-menu-content {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 10000;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 80px 2rem 2rem;
}

.header-nav.active .mobile-menu-content {
    display: block;
    transform: translateX(0);
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
}

.close-menu-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

.close-menu-btn:hover,
.close-menu-btn:active {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: scale(1.1);
}

/* Mobile Menu Header */
.mobile-menu-header {
    text-align: center;
    padding: 2rem 0 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 2rem;
}

.mobile-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.mobile-logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    padding: 10px;
    background: white;
    border: 2px solid #ff8c00;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-brand-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.mobile-brand-text-main,
.mobile-brand-text-sub {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 0.05em;
}

.mobile-tagline {
    color: var(--text-light);
    font-size: 0.875rem;
    font-style: italic;
}

/* Mobile Navigation */
.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 2rem;
}

.mobile-nav-item {
    margin-bottom: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
}

.mobile-nav-link:hover {
    background: var(--gray-100);
    color: var(--primary);
    transform: translateX(4px);
}

.mobile-nav-link i {
    width: 20px;
    text-align: center;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    border-top: 1px solid var(--gray-200);
    padding-top: 1.5rem;
}

.mobile-theme-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--gray-50);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.theme-label {
    font-weight: 600;
    color: var(--text-dark);
}

.mobile-theme-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
}

.mobile-theme-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 2px solid #e2e8f0;
}

.theme-label {
    font-weight: 600;
    color: #1a202c;
    font-size: 1rem;
}

.mobile-theme-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-theme-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.theme-toggle-track {
    width: 50px;
    height: 24px;
    background: #cbd5e1;
    border-radius: 12px;
    position: relative;
    transition: var(--transition);
    border: 2px solid #94a3b8;
}

.theme-toggle-thumb {
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 1px;
    left: 2px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid #e2e8f0;
}

.theme-icon {
    font-size: 0.7rem;
    color: #64748b;
    transition: var(--transition);
}

.theme-text {
    font-size: 0.875rem;
    color: #1a202c;
    font-weight: 600;
    min-width: 50px;
}

.btn-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
    margin-bottom: 1.5rem;
}

.btn-mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 32, 199, 0.3);
}

.mobile-contact-info {
    border-top: 1px solid var(--gray-200);
    padding-top: 1.5rem;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
}

.mobile-contact-item i {
    width: 16px;
    color: var(--primary);
    font-size: 0.9rem;
}

.mobile-contact-item a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.mobile-contact-item a:hover {
    color: var(--primary);
}

/* ===== MEDIA QUERIES ===== */

/* Mobile: Mostrar menu hambúrguer */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .header-nav .nav-menu {
        display: none !important;
    }
    
    .header-actions .btn-header {
        display: none !important;
    }
    
    .header-nav.active {
        display: block !important;
    }
    
    .header-nav.active .mobile-menu-content {
        display: block !important;
        transform: translateX(0) !important;
    }
}

/* Desktop: Ocultar menu mobile */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
        visibility: hidden !important;
    }
    
    .header-nav .nav-menu {
        display: flex !important;
    }
    
    .header-actions .btn-header {
        display: inline-flex !important;
    }
    
    .mobile-menu-content {
        display: none !important;
    }
}

/* ===== SEÇÕES DO SITE ===== */

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    /* Garantir que a imagem carregue */
    background-color: transparent;
}

.hero-slide.active {
    opacity: 1;
}

/* Remover o fallback que estava causando o fundo azul */

/* Slideshow Indicators */
.slideshow-indicators {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.indicator.active {
    background: white;
    border-color: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Responsividade dos indicadores */
@media (max-width: 768px) {
    .slideshow-indicators {
        bottom: 40px;
        gap: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 13, 29, 0.75) 0%, rgba(26, 26, 46, 0.65) 50%, rgba(22, 33, 62, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text {
    color: white;
}

.hero-subtitle {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-highlight {
    display: block;
    color: #3b82f6;
    font-weight: 700;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    color: white;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
    margin-bottom: 0.25rem;
}

.stat-text {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Desktop: Aumentar espaçamento ainda mais */
@media (min-width: 769px) {
    .hero-actions {
        margin-bottom: 6rem;
    }
    
    .slideshow-indicators {
        bottom: 60px;
    }
}

/* Desktop grande: Espaçamento máximo */
@media (min-width: 1200px) {
    .hero-actions {
        margin-bottom: 8rem;
    }
    
    .slideshow-indicators {
        bottom: 80px;
    }
}

.btn-hero {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    min-width: 220px;
    border-radius: 50px;
}

/* About Section */
.about-section-modern {
    padding: 80px 0;
    background: var(--gray-50);
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-badge {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: block;
}

.about-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-description-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    text-align: center;
}

/* Company Mission */
.company-mission {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.mission-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mission-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mission-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.highlight-item i {
    color: #10b981;
    font-size: 1rem;
}

/* Company Stats Card */
.company-stats-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    margin-bottom: 1.5rem;
}

.stats-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.stats-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item-compact {
    text-align: center;
}

.stat-number-large {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label-compact {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CEO Message */
.ceo-message {
    background: var(--gradient);
    border-radius: 16px;
    padding: 1.5rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ceo-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.ceo-quote {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.ceo-name {
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Slider Container */
.services-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 60px;
}

.services-slider {
    position: relative;
    width: 100%;
    min-height: 500px;
}

.service-card-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    min-height: 400px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.service-card-main.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.service-card-main:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-image-container {
    position: relative;
    overflow: hidden;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-main:hover .service-image-container img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 32, 199, 0.8), rgba(59, 130, 246, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-main:hover .service-overlay {
    opacity: 1;
}

.service-icon-large i {
    font-size: 3rem;
    color: var(--white);
}

.service-content-main {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-header-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-title-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.service-badge-main {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-badge-main.popular {
    background: #fef3c7;
    color: #92400e;
}

.service-badge-main.premium {
    background: #dbeafe;
    color: #1e40af;
}

.service-badge-main.specialty {
    background: #f3e8ff;
    color: #7c3aed;
}

.service-description-main {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.highlight-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--gray-50);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.highlight-tag i {
    color: var(--primary);
    font-size: 1rem;
}

.service-actions-main {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-service-details,
.btn-service-quote {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
    flex: 1;
    justify-content: center;
}

.btn-service-details {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-service-details:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-service-quote {
    background: var(--gradient);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-service-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 32, 199, 0.3);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: var(--gray-400);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

/* Services CTA */
.services-cta-modern {
    background: var(--gradient);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.services-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-cta-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-cta-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Differentials Section */
.differentials-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.differentials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.differentials-slider-wrapper {
    position: relative;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.differentials-dots {
    display: none; /* Escondido por padrão no desktop */
}

.differential-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.differential-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.differential-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
}

.differential-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.differential-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Legacy Credibility Section Styles (mantido para compatibilidade) */
.credibility-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.major-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.event-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.event-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.event-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.event-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.event-tag {
    padding: 0.25rem 0.75rem;
    background: var(--gray-100);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Technical Excellence */
.technical-excellence {
    margin-top: 4rem;
}

.excellence-header {
    text-align: center;
    margin-bottom: 3rem;
}

.excellence-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.excellence-description {
    color: var(--text-light);
    font-size: 1.125rem;
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.excellence-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.excellence-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.excellence-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.excellence-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.excellence-item-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 16px;
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-method-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-method-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    word-break: break-all;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.contact-method-value:hover {
    text-decoration: underline;
}

.contact-method-description {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form-description {
    color: var(--text-light);
    font-size: 0.875rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 32, 199, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-loading {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ===== RODAPÉ PROFISSIONAL E MODERNO ===== */
.footer-modern {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: white;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

/* Seção da Marca */
.footer-brand-section {
    max-width: 400px;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    padding: 12px;
    background: white;
    border: 3px solid #ff8c00;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.4);
}

.footer-brand-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-brand-text-main,
.footer-brand-text-sub {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-tagline {
    color: #fbbf24;
    font-size: 1rem;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-certifications {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cert-item:hover {
    border-left-color: #fbbf24;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
}

.cert-item i {
    color: #fbbf24;
    width: 20px;
    font-size: 1.1rem;
}

/* Seções de Links */
.footer-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #fbbf24);
    border-radius: 2px;
}

.footer-services-list,
.footer-company-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-services-list a,
.footer-company-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-left: 3px solid transparent;
    padding-left: 0.75rem;
    position: relative;
}

.footer-services-list a:hover,
.footer-company-list a:hover {
    color: white;
    border-left-color: var(--primary);
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

/* Seção de CTA do Rodapé */
.footer-cta-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-footer-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-footer-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-footer-cta:hover::before {
    left: 100%;
}

.btn-footer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #22c55e, #16a085);
}

.btn-footer-cta i {
    font-size: 1.2rem;
}

/* Rodapé Inferior */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
}

.footer-copyright {
    text-align: left;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-self: end;
}

.social-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(10, 32, 199, 0.4);
    border-color: transparent;
}



/* ===== RESPONSIVE DESIGN ===== */

/* ===== RESPONSIVIDADE TABLET (768px) ===== */
@media (max-width: 768px) {
    /* Container adjustments */
    .header-container,
    .hero-container,
    .about-container-modern,
    .services-container,
    .credibility-container,
    .contact-container,
    .footer-container {
        padding: 0 16px;
    }
    
    /* Header Mobile Fixes */
    .header-modern {
        height: 70px;
        padding: 0;
    }
    
    .header-container {
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0 16px;
    }
    
    .header-brand {
        flex: 1; /* Dar mais espaço para a marca */
        min-width: 0; /* Permitir shrink se necessário */
    }
    
    .brand-logo {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        max-width: 100%;
    }
    
    .logo-image {
        height: 40px; /* Aumentado de 35px para 40px */
        width: auto;
        flex-shrink: 0;
    }
    
    .brand-text-container {
        display: flex; /* Mostrar o texto novamente */
        flex-direction: column;
        line-height: 1;
        min-width: 0; /* Permitir text overflow se necessário */
    }
    
    .brand-text-main,
    .brand-text-sub {
        font-size: 0.85rem; /* Tamanho legível */
        font-weight: 800;
        color: var(--text-dark);
        letter-spacing: 0.02em;
        white-space: nowrap; /* Evitar quebra de linha */
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Dark theme logo text visibility - TABLET */
    [data-theme="dark"] .brand-text-main,
    [data-theme="dark"] .brand-text-sub {
        color: #ffffff !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
    }
    
    /* Ajustar botão CTA para dar espaço */
    .header-actions .btn-header {
        padding: 10px 16px;
        font-size: 0.85rem;
        min-width: auto;
    }
    
    /* Menu toggle com tamanho otimizado */
    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 100vh;
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-text {
        font-size: 0.7rem;
    }
    
    /* Section Typography */
    .section-title {
        font-size: clamp(1.75rem, 4vw, 2rem);
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    /* About Section */
    .about-section-modern {
        padding: 60px 0;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .stats-grid-compact {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    /* Services Section */
    .services-section {
        padding: 60px 0;
    }
    
    .service-card-main {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .service-image-container {
        height: 250px;
        order: -1;
    }
    
    .service-content-main {
        padding: 1.5rem;
    }
    
    .service-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .service-actions-main {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Credibility Section */
    .credibility-section {
        padding: 60px 0;
    }
    
    .major-events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Contact Section Tablet */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-methods {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .contact-method {
        padding: 1.5rem;
        text-align: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .contact-method-content {
        text-align: center;
    }
    
    .contact-method-title {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .contact-method-value {
        text-align: center;
        display: block;
        word-break: break-all;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .contact-method-description {
        text-align: center;
        font-size: 0.9rem;
    }
    
    /* Footer Responsivo - Tablet */
    .footer-modern {
        padding: 3rem 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-bottom: 2.5rem;
    }
    
    .footer-brand-section {
        max-width: 100%;
    }
    
    .footer-services-section,
    .footer-company-section {
        text-align: left;
    }
    
    .footer-cta-section {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-cta-buttons {
        flex-direction: row;
        gap: 1rem;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-social {
        justify-self: center;
        order: -1;
    }
}

/* ===== RESPONSIVIDADE MOBILE (480px) ===== */
@media (max-width: 480px) {
    /* Container adjustments */
    .header-container,
    .hero-container,
    .about-container-modern,
    .services-container,
    .credibility-container,
    .contact-container,
    .footer-container {
        padding: 0 12px;
    }
    
    /* Header Mobile */
    .header-container {
        gap: 0.75rem; /* Aumentado de 0.5rem */
        padding: 0 12px;
    }
    
    .header-brand {
        flex: 1;
        min-width: 0;
    }
    
    .brand-logo {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        max-width: 100%;
    }
    
    .logo-image {
        height: 36px; /* Aumentado de 30px para 36px */
        width: auto;
        flex-shrink: 0;
    }
    
    .brand-text-container {
        display: flex; /* Garantir que está visível */
        flex-direction: column;
        line-height: 1;
        min-width: 0;
    }
    
    .brand-text-main,
    .brand-text-sub {
        font-size: 0.75rem; /* Tamanho otimizado para mobile */
        font-weight: 800;
        color: var(--text-dark);
        letter-spacing: 0.02em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Dark theme logo text visibility - MOBILE */
    [data-theme="dark"] .brand-text-main,
    [data-theme="dark"] .brand-text-sub {
        color: #ffffff !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
    }
    
    .btn-header {
        display: none; /* Hide CTA button on very small screens */
    }
    
    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding-top: 70px;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.2rem);
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stat {
        min-width: auto;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-text {
        font-size: 0.65rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-bottom: 3rem;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    /* Typography Mobile */
    .section-title {
        font-size: clamp(1.5rem, 6vw, 1.75rem);
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .section-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .about-main-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    /* About Section Mobile */
    .about-section-modern {
        padding: 50px 0;
    }
    
    .company-mission {
        padding: 1.5rem;
    }
    
    .mission-highlights {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stats-grid-compact {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .stat-number-large {
        font-size: 1.5rem;
    }
    
    .stat-label-compact {
        font-size: 0.65rem;
    }
    
    /* Services Section Mobile */
    .services-section {
        padding: 50px 0;
    }
    
    .service-card-main {
        border-radius: 16px;
        overflow: hidden;
    }
    
    .service-image-container {
        height: 200px;
    }
    
    .service-content-main {
        padding: 1.25rem;
    }
    
    .service-title-main {
        font-size: 1.25rem;
    }
    
    .service-description-main {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .highlight-tag {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .service-actions-main {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-service-details,
    .btn-service-quote {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    /* Services CTA Mobile */
    .services-cta-modern {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .services-cta-title {
        font-size: 1.5rem;
    }
    
    .services-cta-description {
        font-size: 0.9rem;
    }
    
    .services-cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    /* Credibility Section Mobile */
    .credibility-section {
        padding: 50px 0;
    }
    
    .event-card {
        padding: 1.5rem;
    }
    
    .event-title {
        font-size: 1.1rem;
    }
    
    .event-description {
        font-size: 0.9rem;
    }
    
    .excellence-item {
        padding: 1.5rem;
    }
    
    .excellence-item-title {
        font-size: 1.1rem;
    }
    
    .excellence-item-description {
        font-size: 0.9rem;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-methods {
        order: 1;
    }
    
    .contact-form-wrapper {
        order: 2;
    }
    
    .contact-method {
        padding: 1.5rem;
        text-align: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .contact-method-icon {
        margin: 0 auto;
    }
    
    .contact-method-content {
        text-align: center;
        width: 100%;
    }
    
    .contact-method-title {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 0.75rem;
    }
    
    .contact-method-value {
        font-size: 1rem;
        text-align: center;
        display: block;
        margin-bottom: 0.5rem;
        word-break: break-all;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    
    .contact-method-description {
        font-size: 0.9rem;
        text-align: center;
        line-height: 1.5;
    }
    
    /* Footer Responsivo - Mobile */
    .footer-modern {
        padding: 3rem 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-brand-section {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-logo-image {
        height: 45px;
    }
    
    .footer-brand-text-main,
    .footer-brand-text-sub {
        font-size: 1rem;
    }
    
    .footer-tagline {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .footer-description {
        font-size: 0.95rem;
        text-align: center;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }
    
    .footer-certifications {
        justify-items: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cert-item {
        justify-content: center;
        text-align: center;
    }
    
    .cert-item:hover {
        transform: none;
        padding-left: 1rem;
    }
    
    .footer-section-title {
        text-align: center;
        font-size: 1.2rem;
    }
    
    .footer-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-services-list,
    .footer-company-list {
        text-align: center;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .footer-services-list a,
    .footer-company-list a {
        justify-content: center;
        text-align: center;
        padding-left: 0;
    }
    
    .footer-services-list a:hover,
    .footer-company-list a:hover {
        padding-left: 0;
        transform: none;
        background: rgba(255, 255, 255, 0.1);
        border-left-color: transparent;
        border-radius: 8px;
    }
    
    .footer-cta-section {
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .footer-cta-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom {
        margin: 2rem -12px 0 -12px;
        padding: 2rem 12px 0 12px;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-social {
        justify-self: center;
        order: -1;
    }
    
    .social-links {
        justify-content: center;
    }
    

}

/* ===== CORREÇÕES ESPECÍFICAS DE RESPONSIVIDADE ===== */

/* Landscape mobile (small screens in landscape) */
@media (max-width: 768px) and (max-height: 500px) {
    .hero-section {
        min-height: 100vh;
        padding-top: 70px;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
}

/* Very small screens (320px) */
@media (max-width: 320px) {
    .header-container,
    .hero-container,
    .about-container-modern,
    .services-container,
    .credibility-container,
    .contact-container,
    .footer-container {
        padding: 0 10px;
    }
    
    .header-container {
        gap: 0.5rem;
    }
    
    .brand-logo {
        gap: 0.5rem;
    }
    
    .logo-image {
        height: 32px; /* Ainda visível mas otimizado para espaço */
    }
    
    .brand-text-main,
    .brand-text-sub {
        font-size: 0.7rem; /* Menor mas ainda legível */
    }
    
    /* Dark theme logo text visibility - VERY SMALL */
    [data-theme="dark"] .brand-text-main,
    [data-theme="dark"] .brand-text-sub {
        color: #ffffff !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .service-content-main,
    .contact-form-wrapper,
    .company-mission {
        padding: 1rem;
    }
    
    .btn-hero {
        max-width: 260px;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

/* Tablet landscape improvements */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-container {
        padding: 0 24px;
    }
    
    .hero-container,
    .about-container-modern,
    .services-container,
    .credibility-container,
    .contact-container,
    .footer-container {
        padding: 0 24px;
    }
    
    .service-card-main {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* High DPI screens adjustments */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image,
    .footer-logo-image,
    .mobile-logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ===== MELHORIAS PARA TOUCH E MOBILE MENU ===== */

/* Touch target improvements */
@media (max-width: 768px) {
    /* Ensure minimum touch target size of 44px */
    .mobile-menu-toggle,
    .btn-primary,
    .btn-service-details,
    .btn-service-quote,
    .nav-link,
    .mobile-nav-link {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile menu improvements */
    .mobile-menu-content {
        padding: 90px 1rem 2rem;
        max-height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .mobile-nav-link {
        padding: 1rem 1.25rem;
        margin-bottom: 0.25rem;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 500;
    }
    
    /* Form improvements for mobile */
    .form-input,
    .form-select,
    .form-textarea {
        font-size: 16px; /* Prevent zoom on iOS */
        border-radius: 8px;
    }
    
    /* Button improvements */
    .btn-primary,
    .btn-service-quote,
    .btn-cta-primary {
        padding: 16px 24px;
        font-size: 1rem;
        border-radius: 12px;
        font-weight: 600;
    }
    
    /* Card spacing improvements */
    .service-card-main,
    .event-card,
    .excellence-item,
    .contact-method {
        margin-bottom: 1.5rem;
    }
    
    /* Improve text readability */
    .hero-description,
    .section-description,
    .service-description-main,
    .event-description,
    .excellence-item-description {
        line-height: 1.6;
        font-size: 0.95rem;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        .hero-section {
            min-height: -webkit-fill-available;
        }
        
        .mobile-menu-content {
            height: -webkit-fill-available;
        }
    }
}

/* Android Chrome specific fixes */
@media (max-width: 768px) {
    .hero-bg-image {
        background-attachment: scroll; /* Better performance on mobile */
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Improve scroll performance */
    .service-card-main,
    .event-card,
    .excellence-item {
        transform: translateZ(0); /* Force hardware acceleration */
        will-change: transform;
    }
}

/* ===== DARK THEME STYLES ===== */

/* Dark Theme Variables - PRIORITY OVERRIDE */
[data-theme="dark"] {
    --primary: #3b82f6 !important;
    --secondary: #000000 !important;
    --accent: #60a5fa !important;
    --gradient: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    --text-dark: #ffffff !important;
    --text-light: #d1d5db !important;
    --white: #111111 !important;
    --gray-50: #1a1a1a !important;
    --gray-100: #2a2a2a !important;
    --gray-200: #3a3a3a !important;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4) !important;
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5) !important;
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6) !important;
}

/* Body and base elements */
[data-theme="dark"] body {
    background: #111111 !important;
    color: #ffffff !important;
}

/* All main sections */
[data-theme="dark"] .hero-section,
[data-theme="dark"] .about-section-modern,
[data-theme="dark"] .services-section,
[data-theme="dark"] .credibility-section,
[data-theme="dark"] .contact-section {
    background: #111111 !important;
    color: #ffffff !important;
}

/* Alternating section backgrounds */
[data-theme="dark"] .about-section-modern {
    background: #1a1a1a !important;
}

[data-theme="dark"] .credibility-section {
    background: #0f0f0f !important;
}

/* Header Dark Theme */
[data-theme="dark"] .header-modern {
    background: rgba(17, 17, 17, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom-color: #2a2a2a !important;
}

[data-theme="dark"] .header-modern.scrolled {
    background: rgba(17, 17, 17, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
}

/* Logo text visibility in dark theme */
[data-theme="dark"] .brand-text-main,
[data-theme="dark"] .brand-text-sub {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .mobile-brand-text-main,
[data-theme="dark"] .mobile-brand-text-sub {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
}

[data-theme="dark"] .nav-link:hover {
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* Mobile Menu Dark Theme */
[data-theme="dark"] .mobile-menu-content {
    background: rgba(17, 17, 17, 0.98) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .mobile-menu-header {
    border-bottom-color: #2a2a2a !important;
}

[data-theme="dark"] .mobile-tagline {
    color: #d1d5db !important;
}

[data-theme="dark"] .mobile-nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

[data-theme="dark"] .mobile-nav-link:hover {
    background: #2a2a2a !important;
    color: #ffffff !important;
}

[data-theme="dark"] .mobile-menu-toggle {
    border-color: #3b82f6 !important;
}

[data-theme="dark"] .line {
    background: #3b82f6 !important;
}

[data-theme="dark"] .mobile-menu-toggle:hover {
    background: rgba(59, 130, 246, 0.1) !important;
    border-color: #60a5fa !important;
}

/* Mobile Theme Toggle Dark Mode */
[data-theme="dark"] .mobile-theme-toggle {
    background: #1e293b !important;
    border-color: #475569 !important;
}

[data-theme="dark"] .theme-label {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .theme-text {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .mobile-theme-btn {
    background: rgba(59, 130, 246, 0.2) !important;
    border-color: rgba(59, 130, 246, 0.4) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .mobile-theme-btn:hover {
    background: rgba(59, 130, 246, 0.3) !important;
    border-color: rgba(59, 130, 246, 0.6) !important;
}

[data-theme="dark"] .theme-toggle-track {
    background: #3b82f6 !important;
    border-color: #1d4ed8 !important;
}

[data-theme="dark"] .theme-toggle-thumb {
    transform: translateX(28px) !important;
    background: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
    border-color: #e2e8f0 !important;
}

[data-theme="dark"] .theme-icon {
    color: #1d4ed8 !important;
}

/* Buttons Dark Theme */
[data-theme="dark"] .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    color: #ffffff !important;
    border-color: transparent !important;
}

[data-theme="dark"] .btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .btn-secondary {
    background: transparent !important;
    color: #3b82f6 !important;
    border-color: #3b82f6 !important;
}

[data-theme="dark"] .btn-secondary:hover {
    background: #3b82f6 !important;
    color: #ffffff !important;
}

/* Hero Section Dark Theme */
[data-theme="dark"] .hero-bg-overlay {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.8) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(22, 33, 62, 0.8) 100%) !important;
}

[data-theme="dark"] .hero-stat .stat-number {
    color: #3b82f6 !important;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.8) !important;
}

[data-theme="dark"] .hero-title,
[data-theme="dark"] .hero-description,
[data-theme="dark"] .hero-subtitle {
    color: #ffffff !important;
}

/* Cards Dark Theme */
[data-theme="dark"] .company-mission,
[data-theme="dark"] .company-stats-card,
[data-theme="dark"] .service-card-main,
[data-theme="dark"] .event-card,
[data-theme="dark"] .excellence-item,
[data-theme="dark"] .contact-method,
[data-theme="dark"] .contact-form-wrapper {
    background: #1a1a1a !important;
    border-color: #2a2a2a !important;
    color: #ffffff !important;
}

[data-theme="dark"] .service-card-main:hover,
[data-theme="dark"] .event-card:hover,
[data-theme="dark"] .excellence-item:hover,
[data-theme="dark"] .contact-method:hover {
    background: #222222 !important;
    border-color: #3b82f6 !important;
}

[data-theme="dark"] .ceo-message {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
}

/* Text Elements Dark Theme */
[data-theme="dark"] .section-title,
[data-theme="dark"] .section-subtitle,
[data-theme="dark"] .section-description,
[data-theme="dark"] .about-main-title,
[data-theme="dark"] .mission-title,
[data-theme="dark"] .mission-description,
[data-theme="dark"] .service-title-main,
[data-theme="dark"] .service-description-main,
[data-theme="dark"] .event-title,
[data-theme="dark"] .event-description,
[data-theme="dark"] .excellence-title,
[data-theme="dark"] .excellence-description,
[data-theme="dark"] .excellence-item-title,
[data-theme="dark"] .excellence-item-description,
[data-theme="dark"] .contact-form-title,
[data-theme="dark"] .contact-method-title {
    color: #ffffff !important;
}

[data-theme="dark"] .about-badge,
[data-theme="dark"] .section-subtitle {
    color: #3b82f6 !important;
}

/* Service Elements Dark Theme */
[data-theme="dark"] .highlight-tag {
    background: #2a2a2a !important;
    border-color: #3a3a3a !important;
    color: #d1d5db !important;
}

[data-theme="dark"] .service-badge-main.popular {
    background: #fbbf24 !important;
    color: #92400e !important;
}

[data-theme="dark"] .service-badge-main.premium {
    background: #3b82f6 !important;
    color: #ffffff !important;
}

[data-theme="dark"] .service-badge-main.specialty {
    background: #8b5cf6 !important;
    color: #ffffff !important;
}

/* CTA Dark Theme */
[data-theme="dark"] .services-cta-modern {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
}

[data-theme="dark"] .services-cta-title,
[data-theme="dark"] .services-cta-description {
    color: #ffffff !important;
}

[data-theme="dark"] .btn-cta-primary {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

[data-theme="dark"] .btn-cta-primary:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

[data-theme="dark"] .btn-cta-secondary {
    background: transparent !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

[data-theme="dark"] .btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Contact Dark Theme */
[data-theme="dark"] .contact-method-icon {
    background: #3b82f6 !important;
}

[data-theme="dark"] .contact-method-value {
    color: #3b82f6 !important;
}

[data-theme="dark"] .contact-method-value:hover {
    color: #2563eb !important;
}

[data-theme="dark"] .contact-method-description {
    color: #d1d5db !important;
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea {
    background: #2a2a2a !important;
    border-color: #3a3a3a !important;
    color: #ffffff !important;
}

[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-select:focus,
[data-theme="dark"] .form-textarea:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

[data-theme="dark"] .form-label {
    color: #ffffff !important;
}

/* Footer Dark Theme - Melhorado */
[data-theme="dark"] .footer-modern {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .footer-modern::before {
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.7), transparent) !important;
}

[data-theme="dark"] .footer-brand-text-main,
[data-theme="dark"] .footer-brand-text-sub {
    color: #ffffff !important;
}

[data-theme="dark"] .footer-tagline {
    color: #60a5fa !important;
}

[data-theme="dark"] .footer-description {
    color: rgba(255, 255, 255, 0.8) !important;
}

[data-theme="dark"] .cert-item {
    color: rgba(255, 255, 255, 0.9) !important;
}

[data-theme="dark"] .cert-item:hover {
    color: #ffffff !important;
    border-left-color: #60a5fa !important;
}

[data-theme="dark"] .cert-item i {
    color: #60a5fa !important;
}

[data-theme="dark"] .footer-section-title {
    color: #ffffff !important;
}

[data-theme="dark"] .footer-section-title::after {
    background: linear-gradient(90deg, #60a5fa, #3b82f6) !important;
}

[data-theme="dark"] .footer-services-list a,
[data-theme="dark"] .footer-company-list a {
    color: rgba(255, 255, 255, 0.8) !important;
}

[data-theme="dark"] .footer-services-list a:hover,
[data-theme="dark"] .footer-company-list a:hover {
    color: #ffffff !important;
    border-left-color: #60a5fa !important;
}

[data-theme="dark"] .footer-cta-section {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] .footer-cta-description {
    color: rgba(255, 255, 255, 0.9) !important;
}

[data-theme="dark"] .btn-footer-secondary {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

[data-theme="dark"] .btn-footer-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .btn-footer-cta {
    background: linear-gradient(135deg, #60a5fa, #3b82f6) !important;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3) !important;
}

[data-theme="dark"] .btn-footer-cta:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4) !important;
}

[data-theme="dark"] .footer-bottom {
    background: rgba(0, 0, 0, 0.4) !important;
    border-top-color: rgba(255, 255, 255, 0.2) !important;
}

[data-theme="dark"] .footer-copyright p {
    color: rgba(255, 255, 255, 0.8) !important;
}

[data-theme="dark"] .footer-cnpj {
    color: rgba(255, 255, 255, 0.6) !important;
}

[data-theme="dark"] .social-label {
    color: rgba(255, 255, 255, 0.8) !important;
}

[data-theme="dark"] .social-link {
    background: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .social-link:hover {
    background: linear-gradient(135deg, #60a5fa, #3b82f6) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.4) !important;
}



[data-theme="dark"] .contact-value {
    color: #d1d5db !important;
}

[data-theme="dark"] .contact-value:hover {
    color: #3b82f6 !important;
}

[data-theme="dark"] .social-link {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #d1d5db !important;
}

[data-theme="dark"] .social-link:hover {
    background: #3b82f6 !important;
    color: #ffffff !important;
}

[data-theme="dark"] .footer-copyright p {
    color: #d1d5db !important;
}



/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Smooth animations */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header-modern,
    .mobile-menu-content,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .hero-section {
        padding-top: 0;
    }
}
/* ===== MELHORIAS FINAIS DO RODAPÉ ===== */

/* Animações suaves para elementos do rodapé */
.footer-modern * {
    transition: all 0.3s ease;
}

/* Melhor espaçamento para certificações */
.footer-certifications {
    margin-top: 1rem;
}

/* Hover effect para toda a seção de CTA */
.footer-cta-section:hover {
    transform: translateY(-2px);
}

/* Melhor alinhamento dos ícones sociais */
.social-links {
    align-items: center;
}

/* Efeito de brilho sutil no botão CTA */
.btn-footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-footer-cta:hover::before {
    left: 100%;
}

/* Responsividade extra para telas muito pequenas */
@media (max-width: 320px) {
    .footer-modern {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-main {
        gap: 2rem;
    }
    
    .footer-logo-image {
        height: 35px;
    }
    
    .footer-brand-text-main,
    .footer-brand-text-sub {
        font-size: 0.8rem;
    }
    
    .footer-section-title {
        font-size: 1rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Melhorias para impressão */
@media print {
    .footer-modern {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    .footer-modern::before {
        display: none !important;
    }
    
    .btn-footer-cta,
    .social-links {
        display: none !important;
    }
    
    .footer-bottom {
        background: transparent !important;
        border-top: 1px solid #ccc !important;
    }
}

/* Acessibilidade melhorada */
@media (prefers-reduced-motion: reduce) {
    .footer-modern *,
    .cert-item,
    .contact-item-footer,
    .social-link,
    .btn-footer-cta {
        transition: none !important;
        animation: none !important;
    }
}

/* Focus states para acessibilidade */
.footer-services-list a:focus,
.footer-company-list a:focus,
.contact-value:focus,
.social-link:focus,
.btn-footer-cta:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Dark theme focus states */
[data-theme="dark"] .footer-services-list a:focus,
[data-theme="dark"] .footer-company-list a:focus,
[data-theme="dark"] .contact-value:focus,
[data-theme="dark"] .social-link:focus,
[data-theme="dark"] .btn-footer-cta:focus {
    outline-color: #60a5fa;
}
/* ===== MELHORIAS FINAIS PARA CENTRALIZAÇÃO E PROFISSIONALISMO ===== */

/* Garantir que os formulários também estejam centralizados no mobile */
@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 1.5rem;
        border-radius: 16px;
        text-align: center;
    }
    
    .contact-form-title {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .contact-form-description {
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 14px 16px;
        font-size: 16px; /* Evita zoom no iOS */
    }
    
    .btn-submit {
        padding: 16px;
        font-size: 1rem;
    }
}

/* Melhorias específicas para a seção de contato destacada na imagem */
@media (max-width: 768px) {
    .contact-methods {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-method {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        background: var(--gray-50);
        border: 1px solid var(--gray-200);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .contact-method:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        border-color: var(--primary);
    }
    
    .contact-method-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .contact-method-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--text-dark);
        text-align: center;
        margin-bottom: 0.75rem;
    }
    
    .contact-method-value {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--primary);
        text-align: center;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .contact-method-description {
        font-size: 0.95rem;
        color: var(--text-light);
        text-align: center;
        line-height: 1.5;
    }
}

/* Tema escuro para a seção de contato centralizada */
[data-theme="dark"] .contact-method {
    background: #1a1a1a !important;
    border-color: #2a2a2a !important;
    color: #ffffff !important;
}

[data-theme="dark"] .contact-method:hover {
    background: #222222 !important;
    border-color: #3b82f6 !important;
}

[data-theme="dark"] .contact-method-title {
    color: #ffffff !important;
}

[data-theme="dark"] .contact-method-value {
    color: #3b82f6 !important;
}

[data-theme="dark"] .contact-method-description {
    color: #d1d5db !important;
}

/* Melhorias para telas muito pequenas */
@media (max-width: 320px) {
    .contact-method {
        padding: 1.25rem;
        max-width: 300px;
        overflow: hidden;
        word-wrap: break-word;
    }
    
    .contact-method-content {
        width: 100%;
        overflow: hidden;
    }
    
    .contact-method-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .contact-method-title {
        font-size: 1.1rem;
    }
    
    .contact-method-value {
        font-size: 0.85rem;
        text-align: center;
        display: block;
        margin-bottom: 0.5rem;
        word-break: break-all;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        line-height: 1.3;
        padding: 0 0.5rem;
    }
    
    .contact-method-description {
        font-size: 0.9rem;
    }
    
    .footer-logo-image {
        height: 40px;
    }
    
    .footer-brand-text-main,
    .footer-brand-text-sub {
        font-size: 0.9rem;
    }
    
    .footer-section-title {
        font-size: 1.1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Animações suaves para melhor UX */
.contact-method,
.footer-brand-section,
.footer-services-section,
.footer-company-section,
.footer-contact-section {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Desabilitar animações para usuários que preferem movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    .contact-method,
    .footer-brand-section,
    .footer-services-section,
    .footer-company-section,
    .footer-contact-section {
        animation: none;
    }
}
/* ===== CORREÇÃO ESPECÍFICA PARA E-MAILS LONGOS ===== */

/* Garantir que e-mails longos não vazem do container */
.contact-method-value[href^="mailto:"] {
    word-break: break-all !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    white-space: normal !important;
    max-width: 100% !important;
}

/* Ajustes específicos para telas muito pequenas */
@media (max-width: 360px) {
    .contact-method {
        padding: 1rem;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .contact-method-value {
        font-size: 0.8rem !important;
        line-height: 1.2 !important;
        padding: 0 0.25rem !important;
    }
    
    .contact-method-value[href^="mailto:"] {
        font-size: 0.75rem !important;
        word-spacing: -0.1em;
    }
}

/* Ajustes para telas de 320px (iPhone SE e similares) */
@media (max-width: 320px) {
    .contact-methods {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .contact-method {
        max-width: 260px;
        padding: 0.75rem;
    }
    
    .contact-method-value[href^="mailto:"] {
        font-size: 0.7rem !important;
        letter-spacing: -0.02em;
        word-spacing: -0.15em;
    }
}

/* Garantir que o container pai também não vaze */
@media (max-width: 480px) {
    .contact-container {
        padding: 0 10px;
        overflow-x: hidden;
    }
    
    .contact-methods {
        width: 100%;
        overflow: hidden;
    }
    
    .contact-method-content {
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
/* ===== SEÇÃO CONTEÚDO RELACIONADO ===== */
.related-content {
    padding: 4rem 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    margin-top: 0;
}

.related-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.related-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.related-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.related-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.related-link {
    display: block;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.related-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.related-link:hover::before {
    transform: scaleX(1);
}

.related-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.related-link h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.related-link:hover h4 {
    color: var(--primary);
}

.related-link p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsividade para Conteúdo Relacionado */
@media (max-width: 768px) {
    .related-content {
        padding: 3rem 0;
    }
    
    .related-content h3 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .related-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .related-link {
        padding: 1.5rem;
    }
    
    .related-link h4 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .related-content {
        padding: 2rem 0;
    }
    
    .related-content .container {
        padding: 0 15px;
    }
    
    .related-link {
        padding: 1.25rem;
    }
    
    .related-content h3 {
        font-size: 1.5rem;
    }
}

/* ===== SERVICES SLIDER RESPONSIVE ===== */
@media (max-width: 768px) {
    .services-slider-container {
        padding: 0 20px;
    }
    
    .services-slider {
        min-height: 600px;
    }
    
    .service-card-main {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .services-slider-container {
        padding: 0 20px;
    }
    
    .services-slider {
        min-height: 700px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dot.active {
        width: 24px;
    }
}

/* Dark Theme Slider Controls */
[data-theme="dark"] .slider-dot {
    background: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .slider-dot.active {
    background: var(--primary);
}

/* Differentials Responsive */
@media (max-width: 768px) {
    .differentials-section {
        padding: 60px 0;
    }
    
    /* Transformar em slider no mobile */
    .differentials-slider-wrapper {
        position: relative;
        overflow: hidden;
        padding-bottom: 3rem;
    }
    
    .differentials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 1.5rem;
        padding: 0 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    
    .differentials-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .differential-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 1.5rem;
    }
    
    .differential-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Dots para mobile */
    .differentials-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .differential-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--gray-300);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }
    
    .differential-dot.active {
        background: var(--primary);
        width: 24px;
        border-radius: 4px;
    }
}

@media (min-width: 769px) {
    /* Esconder dots no desktop */
    .differentials-dots {
        display: none;
    }
    
    .differentials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .differentials-section {
        padding: 50px 0;
    }
    
    .differential-card {
        flex: 0 0 90%;
    }
    
    .differential-title {
        font-size: 1.1rem;
    }
    
    .differential-description {
        font-size: 0.9rem;
    }
}

/* Dark Theme Differentials */
[data-theme="dark"] .differentials-section {
    background: #0f0f0f !important;
}

[data-theme="dark"] .differential-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .differential-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--primary);
}

[data-theme="dark"] .differential-title {
    color: #ffffff !important;
}

[data-theme="dark"] .differential-description {
    color: rgba(255, 255, 255, 0.7) !important;
}

[data-theme="dark"] .differential-dot {
    background: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .differential-dot.active {
    background: var(--primary);
}
