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

:root {
    --primary-dark: #0A1628;
    --primary-blue: #1E40AF;
    --primary-cyan: #14B8A6;
    --accent-turquoise: #06B6D4;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: white;
    color: var(--gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 35px;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--primary-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-turquoise));
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu-toggle i {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0A1628 0%, #1E3A5F 50%, #1E40AF 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: morph 20s ease-in-out infinite, float 15s ease-in-out infinite;
}

.hero-bg-shape-1 {
    top: -15%;
    right: -10%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.2) 0%, transparent 70%);
}

.hero-bg-shape-2 {
    bottom: -20%;
    left: -15%;
    width: 1100px;
    height: 1100px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.25) 0%, transparent 70%);
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    animation: morph 25s ease-in-out infinite reverse, float 20s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(20, 184, 166, 0.15);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 100px;
    color: var(--primary-cyan);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.05;
    color: white;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-turquoise) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    max-width: 700px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-turquoise));
    color: var(--primary-dark);
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(20, 184, 166, 0.35);
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 64px rgba(20, 184, 166, 0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

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

.stat {
    text-align: center;
}

.stat-value {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-turquoise));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ==================== ECOSYSTEM ==================== */
.ecosystem {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.ecosystem-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.03), rgba(6, 182, 212, 0.02));
    border-radius: 50%;
    filter: blur(80px);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary-blue);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.ecosystem-card {
    background: white;
    border-radius: 40px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-shape {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(6, 182, 212, 0.05));
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: morph 20s ease-in-out infinite;
}

.ecosystem-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 64px rgba(20, 184, 166, 0.2);
}

.ecosystem-card:hover .card-shape {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(6, 182, 212, 0.1));
}

.ecosystem-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    border-radius: 47% 53% 68% 32% / 76% 35% 65% 24%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.25);
    position: relative;
    z-index: 2;
    transition: all 0.4s;
}

.ecosystem-card:hover .ecosystem-icon {
    transform: scale(1.15) rotate(8deg);
}

.ecosystem-icon i {
    font-size: 2.25rem;
    color: white;
}

.ecosystem-card h3 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
}

.ecosystem-card p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.ecosystem-card ul {
    list-style: none;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.ecosystem-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-700);
    font-size: 1rem;
}

.ecosystem-card ul li i {
    color: var(--primary-cyan);
    font-size: 1.125rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.card-link:hover {
    gap: 14px;
    color: var(--primary-cyan);
}

/* ==================== DIFFERENTIALS ==================== */
.differentials {
    padding: 100px 0;
    background: var(--gray-50);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.differential-item {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.differential-shape {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.06), transparent);
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
}

.differential-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(20, 184, 166, 0.15);
}

.differential-item i {
    font-size: 2.5rem;
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
}

.differential-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.differential-item p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ==================== CTA ==================== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark), #1E3A5F);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-bg-shape {
    position: absolute;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: morph 25s ease-in-out infinite, float 18s ease-in-out infinite;
}

.cta-bg-shape-1 {
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.15), transparent 70%);
}

.cta-bg-shape-2 {
    bottom: -25%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12), transparent 70%);
    animation: morph 30s ease-in-out infinite reverse, float 22s ease-in-out infinite reverse;
}

.cta h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 10;
}

.cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 10;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

/* ==================== PARTNERS ==================== */
.partners {
    padding: 100px 0;
    background: white;
}

.partners h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 4rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: center;
    justify-items: center;
    margin-bottom: 4rem;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    background: white;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    min-height: 180px;
    width: 100%;
    max-width: 100%;
}

.partner-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(20, 184, 166, 0.2);
}

.partner-item img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s;
    display: block;
}

.partner-item:hover img {
    transform: scale(1.1);
}

.correspondente-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(20, 184, 166, 0.1));
    border: 2px solid rgba(20, 184, 166, 0.2);
    border-radius: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.correspondente-badge i {
    font-size: 3rem;
    color: var(--primary-cyan);
}

.correspondente-badge div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.correspondente-badge strong {
    font-size: 1.25rem;
    color: var(--gray-900);
    font-weight: 700;
}

.correspondente-badge span {
    font-size: 1rem;
    color: var(--gray-600);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 6rem 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-ecosystem {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ecosystem-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    padding: 0.5rem 0;
}

.ecosystem-link:hover {
    color: var(--primary-cyan);
    transform: translateX(8px);
}

.ecosystem-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
    transition: all 0.3s;
}

.ecosystem-link:hover .ecosystem-logo {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

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

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-nav-column a::before {
    content: '→';
    color: var(--primary-cyan);
    opacity: 0;
    transition: all 0.3s;
}

.footer-nav-column a:hover {
    color: var(--primary-cyan);
    transform: translateX(8px);
}

.footer-nav-column a:hover::before {
    opacity: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.footer-contact i {
    color: var(--primary-cyan);
    width: 20px;
    text-align: center;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-hours {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.footer-logo-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 2rem;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-logo-section {
    flex: 1;
    min-width: 300px;
}

.footer-logo-section p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-top: 1rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

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

.footer-copy {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==================== FIXED ELEMENTS ==================== */
.theme-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 56px;
    height: 56px;
    background: white;
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s;
}

.theme-btn:hover {
    transform: scale(1.1);
}

.social-fixed {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.social-btn {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--gray-700);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.social-btn:hover {
    transform: translateX(-8px);
}

.whatsapp:hover {
    background: #25D366;
    color: white;
}

.linkedin:hover {
    background: #0077B5;
    color: white;
}

.facebook:hover {
    background: #1877F2;
    color: white;
}

.instagram:hover {
    background: linear-gradient(135deg, #833AB4, #FD1D1D);
    color: white;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none !important;
    }
    
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        background: transparent;
        border: 2px solid var(--gray-700);
        border-radius: 8px;
        color: var(--gray-700);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        flex-shrink: 0;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .menu-toggle:active {
        transform: scale(0.95);
    }
    
    .menu-toggle:hover {
        background: var(--gray-100);
        border-color: var(--primary-blue);
        color: var(--primary-blue);
    }
    
    .menu-toggle i {
        display: block !important;
        font-size: 1.5rem;
        line-height: 1;
        pointer-events: none;
    }
    
    .header-actions {
        gap: 0.75rem;
        flex-wrap: nowrap;
    }
    
    .language-selector {
        margin-right: 0;
    }
    
    .btn-login {
        padding: 8px 16px;
        font-size: 0.875rem;
        white-space: nowrap;
    }
    
    .header-container {
        padding: 0 1rem;
        height: 70px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.125rem !important;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-value {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem !important;
    }
    
    .cta h2 {
        font-size: 2rem !important;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .partners-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .partner-item {
        min-height: 150px;
        padding: 2rem;
    }
    
    .partner-item img {
        max-height: 60px !important;
        width: auto !important;
        object-fit: contain !important;
    }
    
    .correspondente-badge {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .correspondente-badge i {
        font-size: 2rem;
    }
    
    /* Ajustes do seletor de idiomas no mobile */
    .language-dropdown {
        right: 0;
        left: auto;
        min-width: 200px;
        max-width: calc(100vw - 2rem);
    }
    
    /* Garantir que o menu overlay funcione */
    .menu-overlay {
        z-index: 9999 !important;
    }
    
    .menu-toggle {
        z-index: 10000 !important;
    }
    
    /* Ajustes gerais de espaçamento no mobile */
    .container {
        padding: 0 1rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem !important;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}
