* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Scrollbar para Firefox */
    scrollbar-width: thin;
    scrollbar-color: var(--azul-oscuro) var(--gris-claro);
}

:root {
    --azul-oscuro: #04133A;
    --azul-medio: #429577;
    --azul-claro: #71f6d0;
    --gris-claro: #f7fafc;
    --gris-medio: #e2e8f0;
    --gris-oscuro: #4a5568;
    --gris-muy-oscuro: #2d3748;
    --blanco: #FFFFFF;
    --negro: #000000;
    --accento: #71f6d0;
    
    /* Tema claro (default) */
    --bg-primary: #f7fafc;
    --bg-secondary: #ffffff;
    --text-primary: #000000;
    --text-secondary: #2d3748;
    --text-tertiary: #4a5568;
    --border-color: #e2e8f0;
}

/* Tema oscuro */
body.dark-mode {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-tertiary: #acacac;
    --border-color: #334155;
}

body {
    font-family: 'Roboto', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-primary);
    scroll-behavior: smooth;
    font-weight: 400;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body:not(.dark-mode) {
    background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 30%, #f0f9ff 60%, #f0fdfa 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(113, 246, 208, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(66, 149, 119, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(4, 19, 58, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body.dark-mode::before {
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(113, 246, 208, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(66, 149, 119, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(4, 19, 58, 0.02) 0%, transparent 50%);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Personalización de la barra de scroll */
/* Para navegadores basados en WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--gris-claro);
    border-left: 1px solid var(--gris-medio);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--azul-oscuro) 0%, var(--azul-claro) 100%);
    border-radius: 6px;
    border: 2px solid var(--gris-claro);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--azul-claro) 0%, var(--azul-oscuro) 100%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Header y Navegación */
header {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
    box-shadow: 0 4px 20px rgba(4, 19, 58, 0.12), inset 0 1px 0 rgba(255,255,255,0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #04133A 0%, #429577 50%, #71f6d0 100%) 1;
    position: relative;
    overflow: hidden;
}

body.dark-mode header {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom-color: var(--border-color);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(113, 246, 208, 0.1) 50%, transparent 100%);
    animation: headerShine 8s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes headerShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Asegurar que el nav-container esté por encima de los pseudo-elementos */
.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--azul-oscuro);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-family: 'Montserrat', 'Roboto', sans-serif;
    letter-spacing: 0.5px;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    transition: all 0.3s ease;
}

body.dark-mode .logo {
    color: var(--text-primary);
    background-color: transparent;
    box-shadow: none;
}

body.dark-mode .logo:hover {
    background-color: transparent;
    box-shadow: none;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: var(--negro);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 6px 10px;
    border-radius: 4px;
    position: relative;
    font-size: 0.9em;
    white-space: nowrap;
}

nav ul li a:hover {
    color: var(--blanco);
    background-color: var(--azul-oscuro);
    border-bottom: 2px solid var(--azul-claro);
    transform: translateY(-2px);
}

/* Selector de idioma */
.language-selector {
    margin-left: 10px;
}

.lang-switcher {
    display: flex;
    gap: 5px;
    align-items: center;
}

.lang-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.lang-option:hover {
    background-color: var(--gris-claro);
    border-color: var(--gris-medio);
    transform: translateY(-2px);
}

.lang-option.active {
    background-color: var(--azul-oscuro);
    border-color: var(--azul-claro);
    box-shadow: 0 2px 4px rgba(26, 54, 93, 0.2);
}

.lang-option.active img {
    border-color: var(--blanco);
}

/* Estilos especiales para el enlace de Search Load */
.search-load-link {
    background: var(--azul-medio);
    color: var(--blanco) !important;
    font-weight: 600 !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(66, 149, 119, 0.3);
    animation: searchLoadPulse 2s ease-in-out infinite;
}

.search-load-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    animation: searchLoadShine 3s infinite;
}

/* La estrella se agrega solo cuando hay temática activa (ver header.php) */

@keyframes searchLoadPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(66, 149, 119, 0.3),
                    0 0 0 0 rgba(66, 149, 119, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 20px rgba(66, 149, 119, 0.5),
                    0 0 0 8px rgba(66, 149, 119, 0);
        transform: scale(1.05);
    }
}

@keyframes searchLoadShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes searchLoadSparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2) rotate(180deg);
    }
}

.search-load-link:hover {
    background: var(--azul-oscuro);
    transform: translateY(-3px) scale(1.08) !important;
    box-shadow: 0 6px 25px rgba(66, 149, 119, 0.6),
                0 0 0 12px rgba(66, 149, 119, 0.1) !important;
    animation: none;
}

.search-load-link:hover::before {
    animation: searchLoadShine 1s infinite;
}

.search-load-link:hover::after {
    animation: searchLoadSparkle 0.5s ease-in-out infinite;
}

/* Estilos especiales para el enlace de Disponibilidad */
.disponibilidad-link {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    color: #000000 !important;
    font-weight: 600 !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.disponibilidad-link:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 50%, #FF8C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

body.dark-mode .disponibilidad-link {
    color: #000000 !important;
}

body.dark-mode .disponibilidad-link:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    color: #000000 !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: var(--negro);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 50%, #f0f9ff 100%);
    color: var(--negro);
    padding: 0;
    text-align: center;
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(113, 246, 208, 0.1) 0%, transparent 50%);
    animation: heroRotate 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(66, 149, 119, 0.08) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

@keyframes heroRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}

.hero-background .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-text-overlay {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 60px 80px;
    margin-right: 5%;
    text-align: right;
    pointer-events: auto;
}

.hero-title {
    font-size: 3.8rem !important;
    font-weight: 700;
    margin-bottom: 30px;
    color: #FFFFFF !important;
    line-height: 1.1;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

body:not(.dark-mode) .hero-title {
    color: #FFFFFF !important;
    text-shadow: 3px 5px 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.05em!important;
    margin-bottom: 40px;
    color: #FFFFFF !important;
    line-height: 1.35;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

body:not(.dark-mode) .hero-subtitle {
    color: #FFFFFF !important;
    text-shadow: 2px 3px 15px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 100;
    pointer-events: auto;
}

.hero-buttons .btn,
.hero-buttons .btn-secondary {
    cursor: pointer !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 100;
    display: inline-block;
}

.hero-buttons .btn-secondary {
    border: 2px solid var(--blanco);
    color: var(--blanco);
    background: transparent;
}

.hero-buttons .btn-secondary:hover {
    background: var(--blanco);
    color: var(--azul-oscuro);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 253, 250, 0.95) 100%);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(4, 19, 58, 0.15), inset 0 1px 0 rgba(255,255,255,0.8);
    width: 90%;
    margin-top: 80px;
    border: 2px solid rgba(113, 246, 208, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--azul-oscuro) 0%, var(--azul-medio) 50%, var(--azul-claro) 100%);
    z-index: 0;
}

.hero h1 {
    font-size: 2.8em;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--azul-medio);
    color: var(--blanco);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(66, 149, 119, 0.3);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(66, 149, 119, 0.4);
    background: var(--azul-oscuro);
}

.btn-secondary {
    background: transparent;
    color: var(--azul-oscuro);
    border: 2px solid var(--azul-oscuro);
    box-shadow: 0 2px 8px rgba(4, 19, 58, 0.1);
}

.btn-secondary:hover {
    background: var(--azul-oscuro);
    color: var(--blanco);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(4, 19, 58, 0.3);
}

/* Secciones */
section {
    padding: 80px 20px;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(113, 246, 208, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(66, 149, 119, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

section > * {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1400px;
    margin: 5px auto !important;
    padding: 10px 20px 40px;
    border-radius: 5px;
}

.section-title {
    text-align: center;
    font-size: 2.2em;
    color: var(--azul-oscuro);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: 'Montserrat', 'Roboto', sans-serif;
    text-shadow: 0 2px 10px rgba(4, 19, 58, 0.2);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--azul-medio);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gris-oscuro);
    font-size: 1.1em;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(255,255,255,0.8);
}

/* Grid de Servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--blanco);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.4s ease;
    border: 2px solid rgba(113, 246, 208, 0.2);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: 0 6px 20px rgba(4, 19, 58, 0.12), inset 0 1px 0 rgba(255,255,255,0.8);
    overflow: hidden;
    box-sizing: border-box;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--azul-oscuro) 0%, var(--azul-medio) 50%, var(--azul-claro) 100%);
    z-index: 3;
    border-radius: 12px 12px 0 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(4, 19, 58, 0.8) 0%, rgba(4, 19, 58, 0.5) 100%);
    z-index: 1;
    transition: opacity 0.3s;
    pointer-events: none;
    border-radius: 12px;
}

.service-card:hover::after {
    opacity: 0.3;
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-import-export {
    background-image: url('../images/import-export.avif');
}

.service-almacenaje {
    background-image: url('../images/almacenaje.avif');
}

.service-seguro {
    background-image: url('../images/seguro-carga.avif');
}

.service-card:hover {
    box-shadow: 0 12px 35px rgba(4, 19, 58, 0.2), inset 0 1px 0 rgba(255,255,255,0.9);
    transform: translateY(-8px) scale(1.02);
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card h3 {
    color: var(--blanco);
    font-size: 1.4em;
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: 600;
    border-bottom: 2px solid var(--blanco);
    padding-bottom: 10px;
    display: block;
    width: 100%;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    text-align: left;
    text-transform: uppercase;
}

.service-card p {
    color: var(--blanco);
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    margin-bottom: 0;
    text-align: left;
}

/* Sección de Cobertura */
.coverage-map {
    background-color: var(--bg-secondary);
    padding: 40px;
    border-radius: 12px;
    margin-top: 30px;
    text-align: center;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    color: var(--text-primary);
}

.coverage-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--azul-oscuro) 0%, var(--azul-medio) 50%, var(--azul-claro) 100%);
    z-index: 0;
}

.routes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.route-item {
    background-color: var(--bg-secondary);
    padding: 25px;
    border-left: 4px solid var(--azul-claro);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: var(--text-primary);
}

.route-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--azul-oscuro) 0%, var(--azul-medio) 50%, var(--azul-claro) 100%);
    z-index: 0;
}

.route-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(4, 19, 58, 0.15), inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Proceso de Operación */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    margin-top: 50px;
    position: relative;
    padding: 20px 0;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--azul-oscuro) 0%, var(--azul-claro) 50%, var(--azul-oscuro) 100%);
    transform: translateY(-50%);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 25px 15px;
    background-color: var(--bg-secondary);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 200px;
    overflow: hidden;
    color: var(--text-primary);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--azul-oscuro) 0%, var(--azul-medio) 50%, var(--azul-claro) 100%);
    z-index: 0;
}

.process-step:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 35px rgba(4, 19, 58, 0.2), inset 0 1px 0 rgba(255,255,255,0.9);
    border-image: linear-gradient(135deg, var(--azul-oscuro) 0%, var(--azul-medio) 50%, var(--azul-claro) 100%) 1;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--azul-oscuro) 0%, var(--azul-claro) 100%);
    color: var(--blanco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6em;
    font-weight: 700;
    margin: 0 auto 15px;
    box-shadow: 0 4px 12px rgba(4, 19, 58, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 18px rgba(4, 19, 58, 0.4);
}

.process-step h3 {
    color: var(--text-primary);
    font-size: 1.1em;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

@media (max-width: 1200px) {
    .process-steps {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .process-step {
        flex: 0 0 calc(33.333% - 14px);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 25px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }
    
    .process-step h3 {
        font-size: 1.2em;
    }
    
    .process-step p {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .process-steps {
        gap: 20px;
    }
    
    .process-step {
        padding: 20px 15px;
    }
    
    .process-step h3 {
        font-size: 1.1em;
    }
    
    .process-step p {
        font-size: 0.85em;
    }
}

/* Testimonios */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid transparent;
    border-left: 4px solid transparent;
    border-image: linear-gradient(135deg, var(--azul-oscuro) 0%, var(--azul-medio) 50%, var(--azul-claro) 100%) 1;
    box-shadow: 0 6px 20px rgba(4, 19, 58, 0.12), inset 0 1px 0 rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--azul-oscuro) 0%, var(--azul-medio) 50%, var(--azul-claro) 100%);
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(4, 19, 58, 0.15), inset 0 1px 0 rgba(255,255,255,0.9);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gris-oscuro);
}

.testimonial-author {
    font-weight: 600;
    color: var(--negro);
    font-size: 0.95em;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--gris-medio);
}

/* Formularios */
.form-section {
    background-color: var(--gris-claro);
    padding: 60px 20px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: none;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(4, 19, 58, 0.15), inset 0 1px 0 rgba(255,255,255,0.8);
    border: 2px solid rgba(113, 246, 208, 0.2);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--azul-oscuro) 0%, var(--azul-medio) 50%, var(--azul-claro) 100%);
    z-index: 0;
}

.form-container::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(113, 246, 208, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--negro);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gris-medio);
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
    box-shadow: 0 2px 8px rgba(4, 19, 58, 0.05), inset 0 1px 0 rgba(255,255,255,0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--azul-claro);
    box-shadow: 0 4px 15px rgba(113, 246, 208, 0.3), inset 0 1px 0 rgba(255,255,255,0.9);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Botón WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--blanco);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--negro) 0%, #1a1a2e 50%, var(--negro) 100%);
    color: var(--blanco);
    padding: 40px 20px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

body.dark-mode footer {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #0a0e1a 100%) !important;
}

body.dark-mode .footer-section p,
body.dark-mode .footer-section ul li a {
    color: var(--text-secondary) !important;
}

body.dark-mode .footer-bottom {
    color: var(--text-secondary) !important;
}

body.dark-mode .footer-bottom p {
    color: var(--text-secondary) !important;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--azul-oscuro) 0%, var(--azul-medio) 50%, var(--azul-claro) 100%);
    z-index: 0;
}

footer::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(66, 149, 119, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.footer-section h3 {
    color: var(--blanco);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1em;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--azul-claro);
    padding-bottom: 8px;
    display: inline-block;
}

.footer-section p {
    font-size: 0.9em;
    line-height: 1.7;
    margin-bottom: 10px;
    color: var(--gris-medio);
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--gris-medio);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9em;
}

.footer-section ul li a:hover {
    color: var(--azul-claro);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    color: var(--gris-medio);
    font-size: 0.9em;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-dairal-logo-wrapper {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: none;
}

.footer-dairal-logo-wrapper:hover {
    background-color: transparent;
    transform: translateY(-2px);
    box-shadow: none;
}

.footer-logo-wrapper {
    display: inline-block;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    vertical-align: middle;
    transition: all 0.3s ease;
    box-shadow: none;
}

.footer-logo {
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.05);
    display: block;
}

/* Tema oscuro - Estilos generales */
body.dark-mode {
    background-color: var(--bg-primary) !important;
}

body.dark-mode::before {
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(113, 246, 208, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(66, 149, 119, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(4, 19, 58, 0.08) 0%, transparent 50%);
}

body.dark-mode header {
    background-color: var(--bg-secondary) !important;
    border-bottom-color: var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.dark-mode .logo {
    color: var(--text-primary) !important;
}

body.dark-mode nav ul li a {
    color: var(--text-primary) !important;
}

body.dark-mode nav ul li a:hover {
    color: var(--blanco) !important;
    background-color: var(--azul-medio);
}

body.dark-mode section {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary);
}

body.dark-mode section::before {
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(113, 246, 208, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(66, 149, 119, 0.03) 0%, transparent 50%);
}

body.dark-mode .container,
body.dark-mode .form-container,
body.dark-mode .service-card,
body.dark-mode .blog-card,
body.dark-mode .testimonial-card,
body.dark-mode .route-item,
body.dark-mode .process-step,
body.dark-mode .coverage-map {
    background-color: var(--bg-secondary) !important;
    border-color: var(--border-color) !important;
    color: var(--text-primary) !important;
}

/* Quitar fondo del container en la sección de contacto */
body.dark-mode .form-section .container {
    background-color: transparent !important;
}

body.dark-mode .route-item h4,
body.dark-mode .route-item p {
    color: var(--text-primary) !important;
}

body.dark-mode .process-step h3,
body.dark-mode .process-step p {
    color: var(--text-primary) !important;
}

body.dark-mode .coverage-map h3 {
    color: var(--text-primary) !important;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: var(--text-primary) !important;
}

body.dark-mode p,
body.dark-mode .section-subtitle,
body.dark-mode li,
body.dark-mode span {
    color: var(--text-secondary) !important;
}

body.dark-mode .section-title {
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    background: none !important;
}

body.dark-mode .section-title::after {
    background: var(--azul-medio);
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea,
body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea {
    background-color: var(--bg-secondary) !important;
    border-color: var(--border-color) !important;
    color: var(--text-primary) !important;
}

body.dark-mode .form-group label,
body.dark-mode label {
    color: var(--text-tertiary) !important;
}

body.dark-mode table {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}

body.dark-mode table th {
    background-color: var(--azul-oscuro) !important;
    color: var(--blanco) !important;
}

body.dark-mode table td {
    color: var(--text-primary) !important;
    border-color: var(--border-color) !important;
}

body.dark-mode table tbody tr {
    background-color: var(--bg-secondary) !important;
}

body.dark-mode table tbody tr:nth-child(even) {
    background-color: rgba(30, 41, 59, 0.5) !important;
}

body.dark-mode table tbody tr:hover {
    background-color: rgba(66, 149, 119, 0.2) !important;
}

body.dark-mode .btn-secondary {
    background-color: transparent !important;
    border-color: var(--border-color) !important;
    color: var(--text-primary) !important;
}

body.dark-mode .btn-secondary:hover {
    background-color: var(--azul-medio) !important;
    color: var(--blanco) !important;
}

body.dark-mode .hero-content {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98) 0%, rgba(15, 23, 42, 0.95) 100%) !important;
    color: var(--text-primary) !important;
}

body.dark-mode .hero-title {
    color: #FFFFFF !important;
    text-shadow: 2px 4px 16px rgba(0, 0, 0, 0.8);
}

body.dark-mode .hero-subtitle {
    color: #FFFFFF !important;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.8);
}

body.dark-mode section {
    background-color: var(--bg-primary) !important;
}

body.dark-mode .form-section {
    background-color: var(--bg-primary) !important;
}

body.dark-mode nav ul li a {
    color: var(--text-primary) !important;
}

body.dark-mode nav ul li a:hover {
    color: var(--azul-claro) !important;
}

body.dark-mode .search-load-link::before {
    display: none;
}

body.dark-mode .search-load-link:hover::before {
    display: none;
}

body.dark-mode .menu-toggle {
    color: var(--text-primary) !important;
}

body.dark-mode .service-card h3,
body.dark-mode .service-card p {
    color: var(--text-primary) !important;
}

body.dark-mode .process-step h3,
body.dark-mode .process-step p {
    color: var(--text-primary) !important;
}

body.dark-mode .route-item h4,
body.dark-mode .route-item p {
    color: var(--text-primary) !important;
}

body.dark-mode .testimonial-card h3,
body.dark-mode .testimonial-card p {
    color: var(--text-primary) !important;
}

body.dark-mode .blog-card h3,
body.dark-mode .blog-card p {
    color: var(--text-primary) !important;
}

body.dark-mode a {
    color: var(--azul-claro) !important;
}

body.dark-mode a:hover {
    color: var(--azul-medio) !important;
}

body.dark-mode .route-item p,
body.dark-mode .route-item h4 {
    color: var(--text-primary) !important;
}

body.dark-mode .process-step .step-number {
    background-color: var(--azul-medio) !important;
    color: var(--blanco) !important;
}

body.dark-mode .process-step h3,
body.dark-mode .process-step p {
    color: var(--text-primary) !important;
}

body.dark-mode .coverage-map h3 {
    color: var(--text-primary) !important;
}

body.dark-mode .testimonial-card h3,
body.dark-mode .testimonial-card p,
body.dark-mode .testimonial-card .testimonial-author {
    color: var(--text-primary) !important;
}

body.dark-mode select option {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}

body.dark-mode .footer-section ul li a {
    color: var(--gris-medio) !important;
}

body.dark-mode .footer-section ul li a:hover {
    color: var(--azul-claro) !important;
}

body.dark-mode .footer-section p {
    color: var(--gris-medio) !important;
}

/* Estilos inline para search-load.php */
body.dark-mode [style*="background-color: #ffffff"],
body.dark-mode [style*="background-color:#ffffff"],
body.dark-mode [style*="background-color: #fff"],
body.dark-mode [style*="background-color:#fff"] {
    background-color: var(--bg-secondary) !important;
}

body.dark-mode [style*="background-color: #f7fafc"],
body.dark-mode [style*="background-color:#f7fafc"],
body.dark-mode [style*="background-color: #f5f5f5"],
body.dark-mode [style*="background-color:#f5f5f5"],
body.dark-mode [style*="background-color: #f0fdfa"],
body.dark-mode [style*="background-color:#f0fdfa"] {
    background-color: var(--bg-primary) !important;
}

body.dark-mode [style*="color: #2d3748"],
body.dark-mode [style*="color:#2d3748"],
body.dark-mode [style*="color: #4a5568"],
body.dark-mode [style*="color:#4a5568"],
body.dark-mode [style*="color: #000000"],
body.dark-mode [style*="color:#000000"],
body.dark-mode [style*="color: #666"],
body.dark-mode [style*="color:#666"],
body.dark-mode [style*="color: #1a365d"],
body.dark-mode [style*="color:#1a365d"] {
    color: var(--text-primary) !important;
}

body.dark-mode [style*="border: 2px solid #429577"],
body.dark-mode [style*="border:2px solid #429577"],
body.dark-mode [style*="border: 1px solid #e2e8f0"],
body.dark-mode [style*="border:1px solid #e2e8f0"] {
    border-color: var(--border-color) !important;
}

body.dark-mode .hero {
    background: transparent !important;
}

body.dark-mode .hero-background {
    opacity: 1;
}

body.dark-mode .hero-background img {
    filter: brightness(0.6);
}

body.dark-mode .hero-title {
    color: #FFFFFF !important;
    text-shadow: 2px 4px 16px rgba(0, 0, 0, 0.8);
}

body.dark-mode .hero-subtitle {
    color: #FFFFFF !important;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.8);
}

body.dark-mode .hero-buttons .btn-secondary {
    border: 2px solid var(--blanco) !important;
    color: var(--blanco) !important;
    background: transparent !important;
}

body.dark-mode .hero-buttons .btn-secondary:hover {
    background: var(--blanco) !important;
    color: var(--azul-oscuro) !important;
}

body.dark-mode .form-section {
    background-color: var(--bg-primary) !important;
}

body.dark-mode [style*="background-color: #ffffff"],
body.dark-mode [style*="background-color:#ffffff"],
body.dark-mode [style*="background-color: #f7fafc"],
body.dark-mode [style*="background-color:#f7fafc"],
body.dark-mode [style*="background-color: #f0fdfa"],
body.dark-mode [style*="background-color:#f0fdfa"] {
    background-color: var(--bg-secondary) !important;
}

body.dark-mode [style*="color: #2d3748"],
body.dark-mode [style*="color:#2d3748"],
body.dark-mode [style*="color: #4a5568"],
body.dark-mode [style*="color:#4a5568"],
body.dark-mode [style*="color: #04133A"],
body.dark-mode [style*="color:#04133A"],
body.dark-mode [style*="color: #000000"],
body.dark-mode [style*="color:#000000"] {
    color: var(--text-primary) !important;
}

body.dark-mode a {
    color: var(--text-secondary) !important;
}

body.dark-mode a:hover {
    color: var(--azul-claro) !important;
}

body.dark-mode .form-section {
    background-color: var(--bg-primary) !important;
}

body.dark-mode option {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}

body.dark-mode [style*="color: #666"],
body.dark-mode [style*="color:#666"] {
    color: var(--text-secondary) !important;
}

body.dark-mode [style*="background-color: #f5f5f5"],
body.dark-mode [style*="background-color:#f5f5f5"] {
    background-color: var(--bg-primary) !important;
}

body.dark-mode .loads-table {
    background-color: var(--bg-secondary) !important;
}

body.dark-mode .loads-table thead {
    background-color: var(--azul-oscuro) !important;
}

body.dark-mode .loads-table tbody tr:nth-child(even) {
    background-color: rgba(30, 41, 59, 0.3) !important;
}

body.dark-mode .loads-table tbody tr:hover {
    background-color: rgba(66, 149, 119, 0.2) !important;
}


body.dark-mode .theme-toggle:hover {
    background-color: var(--bg-secondary);
    border-color: var(--border-color);
}

.footer-nebel-link {
    color: var(--azul-claro);
    font-size: 0.9em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.footer-nebel-link:hover {
    color: var(--azul-claro);
    opacity: 0.9;
}

.footer-nebel-link:hover .footer-logo {
    opacity: 1;
    filter: brightness(1.2) contrast(1.1);
}

.footer-nebel-link:hover .footer-logo-wrapper {
    background-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.footer-logo {
    height: 24px;
    width: auto;
    opacity: 0.9;
    vertical-align: middle;
    display: block;
    transition: all 0.3s ease;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid rgba(113, 246, 208, 0.2);
    box-shadow: 0 6px 20px rgba(4, 19, 58, 0.12), inset 0 1px 0 rgba(255,255,255,0.8);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--azul-oscuro) 0%, var(--azul-medio) 50%, var(--azul-claro) 100%);
    z-index: 1;
}

.blog-card:hover {
    box-shadow: 0 12px 35px rgba(4, 19, 58, 0.2), inset 0 1px 0 rgba(255,255,255,0.9);
    transform: translateY(-6px) scale(1.02);
    border-color: var(--azul-claro);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-card h3 {
    color: var(--azul-oscuro);
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.3em;
    border-bottom: 3px solid var(--azul-medio);
    padding-bottom: 10px;
}

.blog-card .blog-date {
    color: var(--gris-oscuro);
    font-size: 0.9em;
    margin-bottom: 10px;
}

/* Imágenes */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 1;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
    margin: -40px -30px 25px -30px;
    width: calc(100% + 60px);
}

.about-image {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 30px auto;
    display: block;
}

.coverage-image {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.process-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--azul-oscuro);
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid var(--azul-oscuro);
}

.image-placeholder {
    background-color: var(--gris-claro);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gris-oscuro);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--gris-medio);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.image-grid img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.image-grid img:hover {
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE - MEDIA QUERIES
   ============================================ */

/* Tablets grandes y desktop pequeño */
@media (max-width: 1024px) {
    .nav-container {
        max-width: 100%;
        padding: 12px 15px;
    }
    
    nav ul {
        gap: 12px;
    }
    
    nav ul li a {
        font-size: 0.85em;
        padding: 5px 8px;
    }
    
    .logo-image {
        height: 35px;
        max-width: 150px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 15px;
    }
    
    .hero-text-overlay {
        max-width: 95%;
        padding: 50px 35px;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .section-subtitle {
        font-size: 1em;
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .form-container {
        padding: 35px 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
}

/* Tablets y móviles grandes */
@media (max-width: 768px) {
    /* Header/Navbar */
    .menu-toggle {
        display: block;
        background: none;
        border: 2px solid var(--azul-oscuro);
        color: var(--azul-oscuro);
        padding: 8px 12px;
        border-radius: 5px;
        font-size: 1.2em;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    body.dark-mode .menu-toggle {
        border-color: var(--text-primary);
        color: var(--text-primary);
    }
    
    .menu-toggle:hover {
        background-color: var(--azul-oscuro);
        color: var(--blanco);
    }
    
    body.dark-mode .menu-toggle:hover {
        background-color: var(--azul-medio);
        color: var(--blanco);
    }

    nav ul {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 8px;
        margin-top: 15px;
        padding: 15px 0;
        border-top: 1px solid var(--border-color);
    }

    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        padding: 12px 15px;
        width: 100%;
        text-align: left;
        display: block;
        border-radius: 5px;
        font-size: 0.9em;
    }
    
    .language-selector {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
    
    .lang-switcher {
        justify-content: flex-start;
        width: 100%;
    }
    
    .search-load-link,
    .disponibilidad-link {
        margin: 5px 0;
        display: block;
        width: 100%;
    }
    
    .search-load-link:hover {
        transform: translateY(-2px) scale(1.02) !important;
    }
    
    .logo {
        font-size: 1.3em;
    }
    
    .logo-image {
        height: 32px;
        max-width: 140px;
    }
    
    /* Hero Section */
    .hero-text-overlay {
        max-width: 100%;
        padding: 40px 25px;
        margin-right: 0;
        margin-top: 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2em !important;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1em !important;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        margin-left: 0 !important;
        padding: 12px 25px;
        font-size: 0.95em;
    }
    
    .hero-content {
        width: 95%;
        padding: 40px 25px;
        margin-top: 60px;
    }

    /* Secciones generales */
    section {
        padding: 50px 15px;
    }
    
    .section-title {
        font-size: 1.8em;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 0.95em;
        margin-bottom: 35px;
        padding: 0 10px;
    }
    
    .container {
        padding: 0 15px;
    }

    /* Formularios */
    .form-section {
        padding: 40px 15px;
    }
    
    .form-container {
        padding: 30px 20px;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 0.9em;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px 14px;
        font-size: 0.95em;
    }
    
    .form-group textarea {
        min-height: 100px;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
        padding: 12px;
    }

    /* Servicios */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 35px;
    }
    
    .service-card {
        padding: 25px 20px;
        min-height: auto;
    }

    .service-image {
        height: 180px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        padding-top: 20px;
    }
    
    .footer-bottom p {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    /* Header/Navbar */
    .nav-container {
        padding: 10px 12px;
    }
    
    .logo {
        font-size: 1.2em;
    }
    
    .logo-image {
        height: 28px;
        max-width: 120px;
    }
    
    .menu-toggle {
        padding: 6px 10px;
        font-size: 1.1em;
    }
    
    nav ul li a {
        padding: 10px 12px;
        font-size: 0.85em;
    }
    
    /* Hero Section */
    .hero-text-overlay {
        padding: 30px 20px;
        margin-top: 50px;
    }
    
    .hero-title {
        font-size: 1.8em !important;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1em !important;
        margin-bottom: 25px;
    }
    
    .hero-buttons .btn {
        padding: 11px 20px;
        font-size: 0.9em;
    }
    
    .hero-content {
        padding: 30px 20px;
        margin-top: 50px;
        width: 98%;
    }

    /* Secciones */
    section {
        padding: 40px 10px;
    }
    
    .section-title {
        font-size: 1.6em;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 0.9em;
        margin-bottom: 30px;
        padding: 0 5px;
    }
    
    .container {
        padding: 0 10px;
    }

    /* Formularios */
    .form-section {
        padding: 30px 10px;
    }
    
    .form-container {
        padding: 25px 15px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        font-size: 0.85em;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9em;
    }
    
    .form-group textarea {
        min-height: 90px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9em;
        width: 100%;
    }

    /* Servicios */
    .services-grid {
        gap: 18px;
        margin-top: 30px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card h3 {
        font-size: 1.3em;
    }
    
    .service-card p {
        font-size: 0.9em;
    }
    
    .service-image {
        height: 160px;
    }

    /* Footer */
    .footer-content {
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 1em;
    }
    
    .footer-section p,
    .footer-section ul li a {
        font-size: 0.85em;
    }
    
    .footer-bottom {
        font-size: 0.8em;
        padding-top: 15px;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 22px;
        bottom: 15px;
        right: 15px;
        padding: 11px;
    }
    
    /* Páginas de contacto y operador - Layout de dos columnas */
    .form-section .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-top: 30px !important;
    }
    
    .form-section .container > div > div:first-child {
        text-align: center;
    }
    
    .form-section .container > div > div:first-child h3 {
        font-size: 1.2em;
        margin-bottom: 15px;
    }
    
    .form-section .container > div > div:first-child p {
        font-size: 0.9em;
    }
    
    .form-section .container > div .btn {
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
    }
    
    .form-container[style*="max-width: 600px"],
    .form-container[style*="max-width: 700px"] {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Página de cotización */
    .form-section .form-container[style*="max-width: 700px"] {
        padding: 25px 15px !important;
    }
    
    .form-section .form-container h2 {
        font-size: 1.5em !important;
        margin-bottom: 15px !important;
    }
    
    .form-section .form-container h3 {
        font-size: 1em !important;
        margin: 15px 0 10px !important;
        padding-bottom: 6px !important;
    }
    
    /* Testimonios */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        margin-top: 35px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 0.95em;
    }
    
    .testimonial-author {
        font-size: 0.9em;
    }
}

/* Estilos para tablas de cargas */
.loads-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
    table-layout: auto;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.loads-table th,
.loads-table td {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.loads-table thead {
    background: linear-gradient(135deg, var(--azul-oscuro) 0%, var(--azul-medio) 50%, var(--azul-claro) 100%);
    color: #fff;
}

.loads-table th {
    padding: 10px 12px;
    text-align: left;
    font-weight: 700;
    border-bottom: 3px solid var(--azul-claro);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.loads-table tbody tr {
    border-bottom: 1px solid var(--gris-medio);
    transition: all 0.3s ease;
}

.loads-table tbody tr:nth-child(even) {
    background-color: #f0fdfa;
}

.loads-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.loads-table tbody tr:hover {
    background-color: #e0f2fe !important;
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(4, 19, 58, 0.15);
}

.loads-table td {
    padding: 8px 12px;
    color: var(--gris-oscuro);
    vertical-align: middle;
    white-space: nowrap;
}

.loads-table tbody tr:last-child {
    border-bottom: none;
}

/* Estilos para botones de acción en tabla */
.loads-table .action-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.loads-table .action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--gris-medio);
    background: var(--blanco);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 0.85em;
}

.loads-table .action-btn:hover {
    background-color: var(--azul-claro);
    border-color: var(--azul-claro);
    color: var(--blanco);
    transform: scale(1.1);
}

/* Estilos para indicadores de progreso */
.progress-dots {
    display: flex;
    gap: 3px;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--gris-medio);
}

.progress-dot.active {
    background-color: #22c55e;
}

/* Estilos para panel de administración */
.admin-panel {
    background-color: var(--blanco);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 2px solid var(--azul-claro);
}

.admin-panel h3 {
    color: var(--azul-claro);
    margin-bottom: 15px;
}

/* Estilos para filtros */
.filters-container {
    background-color: var(--blanco);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.filters-container select {
    padding: 8px;
    border: 1px solid var(--gris-medio);
    border-radius: 5px;
    font-size: 0.95em;
    font-family: inherit;
}

.filters-container select:focus {
    outline: none;
    border-color: var(--azul-claro);
}

/* Estilos para formulario de login admin */
#adminLogin {
    background-color: var(--blanco);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 2px solid var(--gris-medio);
}

#adminLogin h3 {
    margin-bottom: 15px;
    color: var(--azul-oscuro);
}

/* Mejoras para formularios */
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gris-medio);
    border-radius: 5px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s;
    background-color: var(--blanco);
}

.form-group select:focus {
    outline: none;
    border-color: var(--azul-claro);
}

/* Estilos para mensajes de estado */
.status-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.status-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive para tablas - Search Load */
@media (max-width: 1024px) {
    .loads-table {
        font-size: 0.9em;
    }
    
    .loads-table th,
    .loads-table td {
        padding: 12px 10px;
    }
    
    .filters-container {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .loads-table {
        font-size: 0.8em;
    }
    
    .loads-table th,
    .loads-table td {
        padding: 10px 8px;
    }
    
    .filters-container {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .filters-container > div {
        width: 100%;
    }
    
    .filters-container select,
    .filters-container input {
        width: 100%;
        padding: 10px 12px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .loads-table {
        font-size: 0.75em;
    }
    
    .loads-table th,
    .loads-table td {
        padding: 8px 6px;
    }
    
    .filters-container select,
    .filters-container input {
        font-size: 0.85em;
        padding: 9px 11px;
    }
}

/* ============================================
   SECCIÓN COBERTURA Y RUTAS - MAPAS INTERACTIVOS
   ============================================ */

/* Contenedor de mapas */
.maps-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.map-wrapper {
    background-color: var(--bg-secondary);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.map-us,
.map-mx {
    min-height: 600px;
}

.map-wrapper:hover {
    box-shadow: 0 8px 25px rgba(4, 19, 58, 0.15);
}

.map-wrapper h3 {
    color: var(--text-primary);
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid var(--azul-medio);
    padding-bottom: 10px;
}

/* Contenedor SVG */
.svg-container {
    width: 100%;
    height: auto;
    position: relative;
    overflow: visible;
    min-height: 500px;
}

/* Logos en estados con cobertura */
.state-logo {
    position: absolute !important;
    z-index: 1000 !important;
    pointer-events: none !important;
    max-width: 70px !important;
    max-height: 70px !important;
    width: auto !important;
    height: auto !important;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)) !important;
    transform: translate(-50%, -50%) !important;
    opacity: 1 !important;
    display: block !important;
    transition: transform 0.3s ease !important;
}

.state-logo:hover {
    transform: translate(-50%, -50%) scale(1.1) !important;
}

body.dark-mode .state-logo {
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6)) drop-shadow(0 0 10px rgba(113, 246, 208, 0.3)) !important;
}

.svg-container svg {
    width: 100%;
    height: auto;
    min-height: 500px;
    max-height: 800px;
    display: block;
    pointer-events: all !important;
}

/* Estilos para las regiones (estados) */
#us-map-container path.region,
#mx-map-container path.region {
    fill: #FFFFFF !important;
    stroke: #CCCCCC !important;
    stroke-width: 0.5px !important;
    cursor: pointer !important;
    transition: fill 0.3s ease, stroke 0.3s ease, stroke-width 0.3s ease !important;
    pointer-events: all !important;
}

/* Asegurar que el SVG no bloquee los eventos */
#us-map-container svg,
#mx-map-container svg {
    pointer-events: all !important;
}

/* Asegurar que los paths sean interactivos */
#us-map-container path,
#mx-map-container path {
    pointer-events: all !important;
}

body.dark-mode #us-map-container path.region,
body.dark-mode #mx-map-container path.region {
    fill: #FFFFFF !important;
    stroke: #CCCCCC !important;
}

/* Estados sin cobertura - DEBE ir ANTES de las reglas de hover para tener prioridad */
#us-map-container path.region.no-coverage,
#mx-map-container path.region.no-coverage {
    fill: #7FD4B8 !important;
    stroke: #FFFFFF !important;
    cursor: pointer !important;
    opacity: 0.7 !important;
    transition: none !important; /* Sin animación */
}

/* Hover en estados sin cobertura - mantener verde Dairal claro */
#us-map-container path.region.no-coverage:hover,
#us-map-container path.region.no-coverage.is-active,
#mx-map-container path.region.no-coverage:hover,
#mx-map-container path.region.no-coverage.is-active {
    fill: #7FD4B8 !important;
    stroke: #FFFFFF !important;
    stroke-width: 0.5px !important;
    opacity: 0.7 !important;
    transition: none !important; /* Sin animación */
}

body.dark-mode #us-map-container path.region.no-coverage,
body.dark-mode #mx-map-container path.region.no-coverage,
body.dark-mode #us-map-container path.region.no-coverage:hover,
body.dark-mode #us-map-container path.region.no-coverage.is-active,
body.dark-mode #mx-map-container path.region.no-coverage:hover,
body.dark-mode #mx-map-container path.region.no-coverage.is-active {
    fill: #7FD4B8 !important;
    stroke: #FFFFFF !important;
    stroke-width: 0.5px !important;
    opacity: 0.7 !important;
}

/* Hover en regiones CON cobertura */
#us-map-container path.region:not(.no-coverage):hover,
#us-map-container path.region:not(.no-coverage).is-active,
#mx-map-container path.region:not(.no-coverage):hover,
#mx-map-container path.region:not(.no-coverage).is-active {
    fill: var(--azul-medio) !important;
    stroke: var(--azul-oscuro) !important;
    stroke-width: 4px !important;
}

body.dark-mode #us-map-container path.region:not(.no-coverage):hover,
body.dark-mode #us-map-container path.region:not(.no-coverage).is-active,
body.dark-mode #mx-map-container path.region:not(.no-coverage):hover,
body.dark-mode #mx-map-container path.region:not(.no-coverage).is-active {
    fill: var(--azul-medio) !important;
    stroke: var(--azul-claro) !important;
    stroke-width: 2.5px !important;
}

/* Tooltip flotante */
.region-tooltip {
    position: fixed;
    background-color: var(--azul-oscuro);
    color: var(--blanco);
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.3px;
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    transform: translate(-50%, -120%);
    transition: opacity 0.2s ease;
    border: 3px solid var(--azul-claro);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 0 2px var(--azul-oscuro);
    white-space: normal;
    max-width: 280px;
    min-width: 200px;
}

.region-tooltip .tooltip-state-name {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--blanco);
    margin-bottom: 10px;
    line-height: 1.3;
    border-bottom: 2px solid var(--azul-claro);
    padding-bottom: 8px;
}

.region-tooltip .tooltip-title {
    font-size: 1.05em;
    font-weight: 600;
    color: var(--azul-claro);
    margin-bottom: 8px;
    line-height: 1.3;
}

.region-tooltip .tooltip-description {
    font-size: 0.9em;
    font-weight: 400;
    color: var(--blanco);
    line-height: 1.5;
    opacity: 0.95;
}

.region-tooltip.visible {
    opacity: 1;
}

/* Tooltip Premium - Estados con cobertura (Texas y Nuevo León) */
.region-tooltip.premium {
    background: linear-gradient(135deg, var(--azul-oscuro) 0%, #0a1f4a 100%);
    border: 3px solid var(--azul-claro);
    box-shadow: 0 6px 20px rgba(113, 246, 208, 0.4), 
                0 0 0 2px var(--azul-oscuro),
                0 0 30px rgba(113, 246, 208, 0.2);
    animation: premiumGlow 2s ease-in-out infinite alternate;
}

.region-tooltip.premium::before {
    content: '⭐';
    position: absolute;
    top: -12px;
    right: -12px;
    font-size: 1.5em;
    background: linear-gradient(135deg, var(--azul-claro) 0%, var(--azul-medio) 100%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(113, 246, 208, 0.5);
    border: 2px solid var(--azul-oscuro);
}

.region-tooltip.premium .tooltip-state-name {
    color: var(--azul-claro);
    text-shadow: 0 0 10px rgba(113, 246, 208, 0.5);
    border-bottom: 2px solid var(--azul-claro);
    border-image: linear-gradient(90deg, var(--azul-claro) 0%, var(--azul-medio) 100%) 1;
}

.region-tooltip.premium .tooltip-title {
    color: var(--azul-claro);
    text-shadow: 0 0 8px rgba(113, 246, 208, 0.4);
    font-weight: 700;
}

@keyframes premiumGlow {
    0% {
        box-shadow: 0 6px 20px rgba(113, 246, 208, 0.4), 
                    0 0 0 2px var(--azul-oscuro),
                    0 0 30px rgba(113, 246, 208, 0.2);
    }
    100% {
        box-shadow: 0 6px 20px rgba(113, 246, 208, 0.6), 
                    0 0 0 2px var(--azul-oscuro),
                    0 0 40px rgba(113, 246, 208, 0.4);
    }
}

body.dark-mode .region-tooltip {
    background-color: var(--azul-oscuro);
    border-color: var(--azul-claro);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), 0 0 0 2px var(--azul-claro);
}

body.dark-mode .region-tooltip.premium {
    background: linear-gradient(135deg, var(--azul-oscuro) 0%, #0a1f4a 100%);
    border: 3px solid var(--azul-claro);
    box-shadow: 0 6px 20px rgba(113, 246, 208, 0.5), 
                0 0 0 2px var(--azul-claro),
                0 0 30px rgba(113, 246, 208, 0.3);
}

/* Responsive para mapas */
@media (max-width: 1024px) {
    .maps-container {
        gap: 40px;
    }
    
    .map-us,
    .map-mx {
        min-height: 500px;
    }
    
    .svg-container {
        min-height: 400px;
    }
    
    .svg-container svg {
        min-height: 400px;
        max-height: 600px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
        min-height: 250px;
        border-radius: 10px;
    }
    
    .service-card::before {
        border-radius: 10px 10px 0 0;
    }
    
    .service-card::after {
        border-radius: 10px;
    }
    
    .map-wrapper {
        padding: 20px;
    }
    
    .map-wrapper h3 {
        font-size: 1.2em;
    }
    
    .region-tooltip {
        font-size: 0.8em;
        padding: 8px 12px;
    }
}

