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

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

:root {
    --verde-principal: #2ECC71;
    --verde-secundario: #27AE60;
    --verde-claro: #58D68D;
    --verde-oscuro: #229954;
    --azul-acento: #3498DB;
    --azul-claro: #5DADE2;
    --fondo-oscuro: #0d1421;
    --texto-blanco: #FFFFFF;
    --texto-gris: #B0BEC5;
    --texto-gris-claro: #CFD8DC;
    --verde-gradiente: linear-gradient(135deg, #2ECC71, #27AE60);
    --verde-gradiente-claro: linear-gradient(135deg, #58D68D, #2ECC71);
    --azul-gradiente: linear-gradient(135deg, #3498DB, #5DADE2);
    --gradiente-mixto: linear-gradient(135deg, #2ECC71, #3498DB);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--fondo-oscuro);
    color: var(--texto-blanco);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    opacity: 0;
    animation: none; /* Removemos la animación inicial, se maneja con JS */
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}

/* Animación de fadeIn manejada por JavaScript */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Background profesional y futurista - reemplazando el existente */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.main-container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    overflow-y: auto;
}

.background-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(46, 204, 113, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(52, 152, 219, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 80%, rgba(88, 214, 141, 0.05) 1px, transparent 1px);
    background-size: 150px 150px, 200px 200px, 100px 100px;
    background-position: 0 0, 50px 50px, 75px 25px;
    opacity: 0.4;
    animation: patternFloat 60s linear infinite;
}

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

.background-image {
    width: 100%;
    height: 100%;
    background: #0f1419;
    opacity: 1;
}

/* Animación removida para evitar cortes */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    overflow: hidden;
}

/* Focos animados delicadamente */
.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle 800px at 20% 30%, rgba(46, 204, 113, 0.04) 0%, transparent 70%),
        radial-gradient(circle 600px at 80% 70%, rgba(52, 152, 219, 0.03) 0%, transparent 70%),
        radial-gradient(circle 1000px at 50% 90%, rgba(88, 214, 141, 0.02) 0%, transparent 70%);
    animation: gentleFocusFloat 80s ease-in-out infinite;
    z-index: 1;
}

.overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle 600px at 80% 20%, rgba(52, 152, 219, 0.03) 0%, transparent 70%),
        radial-gradient(circle 800px at 20% 80%, rgba(88, 214, 141, 0.02) 0%, transparent 70%);
    animation: gentleFocusFloat 100s ease-in-out infinite reverse;
    z-index: 1;
}

@keyframes gentleFocusFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translate(-10px, -5px) scale(1.01);
        opacity: 0.5;
    }
    66% {
        transform: translate(8px, 8px) scale(0.99);
        opacity: 0.4;
    }
}

/* Header profesional sin fondo visible */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 3.15rem;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(8px) saturate(120%);
    border-bottom: none;
    box-shadow: none;
    border: none;
    position: relative;
    transition: all 0.3s ease;
}

/* Estado mejorado cuando está cargado - más sutil */
.header.loaded {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px) saturate(140%);
    border-bottom: none;
    box-shadow: none;
}

/* Efecto de brillos más sutil en el header */
.header.loaded::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(46, 204, 113, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 70%,
        transparent 100%
    );
    animation: subtleShimmer 4s ease-in-out infinite;
}

@keyframes subtleShimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.6; }
}

/* Navegación más profesional */
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    background: transparent;
    border: none;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.05), 
        transparent
    );
    transition: left 0.6s ease;
}

.nav-link:hover {
    background: rgba(46, 204, 113, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.25);
    color: rgba(255, 255, 255, 1);
}

.nav-link:hover::before {
    left: 100%;
}

/* Iconos más sutiles y profesionales */
.nav-link i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    position: relative;
}

.nav-link:hover i {
    transform: scale(1.05);
    color: var(--verde-claro);
    filter: drop-shadow(0 2px 4px rgba(46, 204, 113, 0.3));
}

/* Remover gradientes de colores de iconos para look más profesional */
.nav-link[href="#inicio"] i,
.nav-link[href="#rutas"] i,
.nav-link[href="#servicios"] i,
.nav-link[href="#nosotros"] i,
.nav-link[href="#contacto"] i {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: rgba(255, 255, 255, 0.8);
}

.nav-link:hover[href="#inicio"] i,
.nav-link:hover[href="#rutas"] i,
.nav-link:hover[href="#servicios"] i,
.nav-link:hover[href="#nosotros"] i,
.nav-link:hover[href="#contacto"] i {
    color: var(--verde-claro);
}

/* Botón de WhatsApp más sutil */
.whatsapp-link {
    background: var(--verde-gradiente);
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.whatsapp-link::after {
    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.6s ease;
}

.whatsapp-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    background: var(--verde-gradiente-claro);
}

.whatsapp-link:hover::after {
    left: 100%;
}

/* Quitar animaciones de partículas y ondas no profesionales */
/* Las animaciones de partículas han sido removidas para un look más profesional */

.floating-particles,
.background-waves,
.animated-gradients,
.particle,
.wave,
.wave-1,
.wave-2,
.wave-3 {
    display: none !important;
}

/* Header mejorado sin duplicación */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 3rem;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(8px);
    border-bottom: none;
    box-shadow: none;
    border: none;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 126px;
    height: 79px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.logo-icon:hover {
    transform: scale(1.05);
}

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

.navigation {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    background: rgba(46, 204, 113, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.25);
    color: rgba(255, 255, 255, 1);
}

.nav-link i {
    font-size: 1.1rem;
}

.whatsapp-button {
    position: relative;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: #128C7E;
}

.whatsapp-link i {
    font-size: 1.2rem;
}

.whatsapp-text {
    position: relative;
    z-index: 2;
}

/* Burbuja de texto animada */
.whatsapp-link::before {
    content: "Cotiza tu viaje ya!";
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10;
}

.whatsapp-link::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10;
}

.whatsapp-link:hover::before {
    opacity: 1;
    top: -60px;
}

.whatsapp-link:hover::after {
    opacity: 1;
    top: -20px;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    text-align: center;
    min-width: 200px;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 3rem;
    padding-bottom: 120px; /* Espacio para el botón flotante */
}

.hero-section {
    max-width: 85%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    min-height: 65vh;
    margin: 0 auto 1rem auto;
}

.hero-text {
    text-align: left;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badges {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 3rem;
    margin-top: 0;
    flex-wrap: wrap;
}

.badge {
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid var(--verde-claro);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: var(--verde-claro);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
}

.badge:hover {
    background: var(--verde-principal);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #fff 0%, var(--verde-claro) 50%, var(--azul-claro) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Estadísticas del Hero */
.hero-stats-section {
    width: 100%;
    margin-top: 4rem;
    padding: 0 2rem;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px) saturate(120%);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(46, 204, 113, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 40px rgba(46, 204, 113, 0.05);
}

.hero-stat-item {
    text-align: center;
    padding: 1rem 0.5rem;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.hero-stat-item:hover {
    background: rgba(46, 204, 113, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.15);
}

.hero-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--verde-claro);
    margin-bottom: 0.5rem;
    line-height: 1;
    background: var(--gradiente-mixto);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
}

.hero-stat-number.animating {
    animation: numberPulse 0.5s ease-in-out;
}

@keyframes numberPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hero-stat-number::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--verde-principal);
    transition: width 0.3s ease;
}

.hero-stat-number.animating::after {
    width: 100%;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tab.active {
    background: var(--verde-gradiente);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
    animation: pulse 2s infinite;
}

.tab:hover {
    transform: translateY(-2px);
    background: rgba(46, 204, 113, 0.15);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
}

.tab.active:hover {
    background: var(--verde-gradiente);
}

/* Contenedor principal del cotizador */
.quote-container {
    width: 90%;
    max-width: 1200px;
    padding: 0 4rem;
    margin: 0 auto;
}

/* Header del cotizador */
.quote-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quote-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: var(--gradiente-mixto);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-main-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Wrapper del formulario */
.quote-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px) saturate(120%);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.quote-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--verde-gradiente);
    border-radius: 24px 24px 0 0;
}

/* Grid del formulario */
.quote-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Campos del formulario */
.quote-field {
    display: flex;
    flex-direction: column;
}



.quote-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-container {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    min-height: 65px;
}

.input-container:hover {
    background: rgba(46, 204, 113, 0.06);
    border-color: rgba(46, 204, 113, 0.12);
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.15);
}

.input-container:focus-within {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--verde-principal);
    box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.15);
}

.input-container i {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.input-container input,
.input-container select,
.input-container textarea {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    padding: 0;
    margin-bottom: 0.25rem;
    resize: none;
}

.input-container input::placeholder,
.input-container textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.input-container select {
    appearance: none;
    cursor: pointer;
    padding-right: 2rem;
}

.input-container select:focus {
    color: white;
}

.input-container select option {
    background: var(--fondo-oscuro);
    color: white;
    padding: 0.5rem;
}

/* Estilos para selects dinámicos */
.select-container {
    position: relative;
}

.select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.select-dropdown.show {
    display: block;
}

.select-options {
    padding: 0.5rem 0;
}

.select-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    color: #2c3e50;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.select-option:hover {
    background: rgba(46, 204, 113, 0.1);
    color: var(--verde-principal);
}

.select-option:last-child {
    border-bottom: none;
}

.select-option .department {
    font-weight: 600;
    color: var(--verde-principal);
}

.select-option .city {
    color: #34495e;
}

.select-option.highlighted,
.select-option.keyboard-selected {
    background: rgba(46, 204, 113, 0.15);
    color: var(--verde-principal);
}

.select-option.keyboard-selected .city {
    color: var(--verde-principal);
    font-weight: 600;
}

.select-option.keyboard-selected .department {
    color: var(--verde-principal);
    opacity: 0.8;
}

.no-results {
    padding: 1rem;
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
}

/* Estilos para resaltado de coincidencias */
.select-option .highlight {
    background: rgba(46, 204, 113, 0.2);
    color: var(--verde-principal);
    font-weight: 600;
    padding: 0 2px;
    border-radius: 3px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.select-option:hover .highlight {
    background: rgba(46, 204, 113, 0.3);
    color: var(--verde-principal);
}

.input-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1;
}

/* Acciones del formulario */
.quote-actions {
    text-align: center;
}

.quote-submit-btn {
    width: 100%;
    max-width: 400px;
    height: 65px;
    background: var(--gradiente-mixto);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.quote-submit-btn::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;
}

.quote-submit-btn:hover::before {
    left: 100%;
}

.quote-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.5);
    background: var(--verde-gradiente-claro);
}

.quote-disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}

.quote-disclaimer i {
    color: var(--verde-claro);
}

/* Estilos de compatibilidad para elementos existentes */



/* Responsive para el cotizador nuevo */
@media (max-width: 1200px) {
    .quote-form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .quote-section-main {
        padding: 3rem 0;
    }
    
    .quote-container {
        width: 95%;
        padding: 0 2rem;
    }
    
    .quote-header {
        margin-bottom: 2rem;
    }
    
    .quote-main-title {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
    }
    
    .quote-main-subtitle {
        font-size: 1rem;
    }
    
    .quote-form-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .quote-form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .input-container {
        min-height: 60px;
        padding: 1rem;
    }
    
    .quote-submit-btn {
        height: 55px;
        font-size: 1.1rem;
        max-width: none;
    }
    
    /* Estilos responsive para selects dinámicos */
    .select-dropdown {
        max-height: 200px;
        border-radius: 10px;
    }
    
    .select-option {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .select-option .city {
        font-size: 0.9rem;
    }
    
    .select-option .department {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .quote-section-main {
        padding: 2rem 0;
    }
    
    .quote-container {
        width: 98%;
        padding: 0 1rem;
    }
    
    .quote-main-title {
        font-size: 1.8rem;
    }
    
    .quote-main-subtitle {
        font-size: 0.9rem;
    }
    
    .quote-form-wrapper {
        padding: 1.5rem 1rem;
        border-radius: 18px;
    }
    
    .quote-form-grid {
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .input-container {
        padding: 0.9rem;
        min-height: 55px;
    }
    
    .input-container input,
    .input-container select,
    .input-container textarea {
        font-size: 0.9rem;
    }
    
    .quote-field label {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .input-label {
        font-size: 0.7rem;
    }
    
    .quote-submit-btn {
        height: 50px;
        font-size: 1rem;
    }
    
    /* Estilos responsive para selects dinámicos en móviles pequeños */
    .select-dropdown {
        max-height: 180px;
        border-radius: 8px;
        margin-top: 2px;
    }
    
    .select-option {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
    
    .select-option .city {
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    .select-option .department {
        font-size: 0.75rem;
        opacity: 0.8;
    }
}

/* Quote Result */
.quote-result {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.result-header h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.result-header i {
    font-size: 2rem;
    color: var(--verde-claro);
}

.result-content {
    margin-bottom: 2rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item.total {
    border-bottom: none;
    border-top: 2px solid var(--verde-claro);
    margin-top: 1rem;
    padding-top: 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.result-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.result-value {
    color: white;
    font-weight: 600;
}

.result-item.total .result-value {
    color: var(--verde-claro);
    font-size: 1.3rem;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.result-actions .btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .result-actions .btn:hover {
        transform: translateY(-2px);
    }
    
    /* Estilos para el modal de contacto */
    .contact-info-modal {
        margin: 1.5rem 0;
    }
    
    .contact-item-modal {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin-bottom: 1rem;
    }
    
    .contact-item-modal i {
        color: var(--verde-claro);
        font-size: 1.2rem;
        width: 20px;
    }
    
    .contact-item-modal span {
        color: white;
        font-weight: 500;
    }
    
    .modal-note {
        background: rgba(46, 204, 113, 0.2);
        border: 1px solid var(--verde-claro);
        border-radius: 8px;
        padding: 1rem;
        margin-top: 1.5rem;
        color: var(--verde-claro);
        font-style: italic;
    }
    
    .client-info-modal {
        margin: 1.5rem 0;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        border-left: 4px solid var(--verde-claro);
    }
    
    .client-info-modal h4 {
        color: var(--verde-claro);
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}



.form-control:focus {
    outline: none;
    border-color: var(--verde-principal);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
}



.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
}

.input-with-icon .form-control {
    padding-left: 3rem;
}

.arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
}

/* Mejoras de accesibilidad y performance */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mejorar contraste de texto */
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* Asegurar que los inputs tengan suficiente contraste */
.form-control {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 200px;
    width: 100%;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--verde-principal);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 0.8rem 1.575rem;
        flex-direction: row;
        gap: 1rem;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(20px);
    }
    
    .logo-icon {
        width: 105px;
        height: 68px;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
    }
    
    .navigation {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .whatsapp-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .whatsapp-link i {
        font-size: 1rem;
    }

    .hero-section-main {
        padding: 2rem 0.5rem 5rem 0.5rem;
    }
    
    .hero-section {
        max-width: 90%;
        padding: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        min-height: auto;
        margin: 0.5rem auto 0 auto;
    }
    
    .hero-text {
        text-align: center;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        justify-content: center;
        padding-left: 0;
        padding: 0;
    }
    
        .hero-render, #heroCanvas {
        max-width: 140%;
        transform: scale(1.05);
    }
    
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-stat-label {
        font-size: 0.85rem;
    }
    
    .badges {
        justify-content: center;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 3.2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp-link {
        width: 50px;
        height: 50px;
    }
    
    .floating-whatsapp-link i {
        font-size: 1.5rem;
    }

    .main-content {
        padding: 1rem;
    }
    
    .quote-section {
        max-width: 100%;
        padding: 1.5rem;
        margin: 0;
    }

    .service-tabs {
        flex-direction: column;
        align-items: center;
    }

    .quote-section {
        padding: 2rem;
    }
    
    .quote-title {
        font-size: 2rem;
    }
    
    .result-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .result-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.6rem 1.05rem;
        flex-direction: row;
        gap: 0.5rem;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        align-items: center;
        justify-content: space-between;
    }
    
    .logo {
        justify-content: center;
        flex-shrink: 0;
    }
    
    .logo-icon {
        width: 70px;
        height: 45px;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
    }
    
    .navigation {
        order: 2;
        gap: 0.3rem;
        justify-content: center;
        flex-wrap: wrap;
        flex: 1;
    }
    
    .nav-link span {
        display: none;
    }
    
    .nav-link {
        padding: 0.4rem;
        border-radius: 50%;
        min-width: 35px;
        min-height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
    }
    
    .nav-link i {
        font-size: 0.9rem;
    }
    
    .whatsapp-button {
        order: 3;
        margin-top: 0;
        flex-shrink: 0;
    }
    
    .whatsapp-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
    }
    
    .whatsapp-link i {
        font-size: 0.8rem;
    }
    
    .whatsapp-text {
        display: none;
    }

    .hero-section-main {
        padding: 1.5rem 0.25rem 4rem 0.25rem;
    }
    
    .hero-section {
        padding: 0;
        max-width: 95%;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-height: auto;
        margin: 0.25rem auto 0 auto;
    }
    
    .badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        border-radius: 20px;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-render, #heroCanvas {
        max-width: 140%;
        border-radius: 15px;
        transform: scale(1.02);
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }
    
    .hero-stat-item {
        padding: 0.8rem 0.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .hero-stat-label {
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }
    
    /* Responsive para nuevas secciones móviles */
    .services-section-main,
    .values-section-main,
    .trusted-companies-main,
    .policies-section-main,
    .certifications-section-main,
    .reviews-section-main,
    .contact-section-main {
        padding: 1.5rem 0;
    }
    
    .vision-mision-section-main {
        padding: 1rem 0;
    }
    
    .vision-content,
    .mision-content {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .contact-form-compact {
        padding: 1.5rem;
    }
    
    .contact-item-compact {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .contact-icon-compact {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon-compact i {
        font-size: 1rem;
    }
    
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-whatsapp-link {
        width: 45px;
        height: 45px;
    }
    
    .floating-whatsapp-link i {
        font-size: 1.3rem;
    }
    
    .floating-whatsapp-text {
        display: none;
    }
    
    /* Mejorar visualización de inputs en móviles */
    .form-control {
        font-size: 16px; /* Evita zoom en iOS */
        padding: 0.8rem;
        min-width: 150px;
    }
    
    .form-control::placeholder {
        font-size: 14px;
    }
    
    .input-with-icon .form-control {
        padding-left: 2.5rem;
    }
    
    .input-with-icon i {
        left: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Transiciones suaves */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-section {
    animation: fadeInUp 1s ease-out;
}

.quote-section {
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Trusted Companies Section */
.trusted-companies {
    padding: 4rem 3rem;
    margin-top: 2rem;
    position: relative;
}

.trusted-companies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(46, 204, 113, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.trusted-companies::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatLight 6s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

/* Luces flotantes adicionales */
.trusted-companies .floating-light-1 {
    content: '';
    position: absolute;
    top: 60%;
    right: 15%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    animation: floatLight2 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

.trusted-companies .floating-light-2 {
    content: '';
    position: absolute;
    top: 30%;
    left: 20%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    animation: floatLight3 7s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

.trusted-companies .floating-light-3 {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 60%;
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.13) 0%, transparent 60%);
    border-radius: 50%;
    animation: floatLight4 9s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes floatLight {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes floatLight2 {
    0%, 100% {
        transform: translateX(0px) translateY(0px) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateX(15px) translateY(-15px) scale(1.3);
        opacity: 0.8;
    }
}

@keyframes floatLight3 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-25px) rotate(180deg) scale(1.4);
        opacity: 0.9;
    }
}

@keyframes floatLight4 {
    0%, 100% {
        transform: translateX(0px) translateY(0px) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateX(-10px) translateY(-20px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translateX(10px) translateY(-10px) scale(1.1);
        opacity: 0.6;
    }
    75% {
        transform: translateX(-5px) translateY(-15px) scale(1.3);
        opacity: 0.7;
    }
}

.trusted-header {
    text-align: center;
    margin-bottom: 4rem;
}

.trusted-header h2 {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.trusted-header p {
    display: none;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    padding: 2rem;
}



.company-logo {
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 1.5rem;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.company-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.5) 0%, transparent 60%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 0;
    animation: lightPulse 3s ease-in-out infinite;
}

@keyframes lightPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes lightRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes lightFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}





@keyframes hoverLightPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

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

.company-logo i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Efectos de luz individuales para cada icono con diferentes animaciones */
.company-logo:nth-child(1)::before {
    background: radial-gradient(circle, rgba(46, 204, 113, 0.7) 0%, transparent 60%);
    animation: lightPulse 3s ease-in-out infinite, lightFloat 4s ease-in-out infinite;
}

.company-logo:nth-child(2)::before {
    background: radial-gradient(circle, rgba(52, 152, 219, 0.7) 0%, transparent 60%);
    animation: lightPulse 3.5s ease-in-out infinite, lightRotate 8s linear infinite;
}

.company-logo:nth-child(3)::before {
    background: radial-gradient(circle, rgba(155, 89, 182, 0.7) 0%, transparent 60%);
    animation: lightPulse 4s ease-in-out infinite, lightFloat 5s ease-in-out infinite;
}

.company-logo:nth-child(4)::before {
    background: radial-gradient(circle, rgba(230, 126, 34, 0.7) 0%, transparent 60%);
    animation: lightPulse 3.2s ease-in-out infinite, lightRotate 10s linear infinite;
}

.company-logo:nth-child(5)::before {
    background: radial-gradient(circle, rgba(231, 76, 60, 0.7) 0%, transparent 60%);
    animation: lightPulse 3.8s ease-in-out infinite, lightFloat 6s ease-in-out infinite;
}

.company-logo:nth-child(6)::before {
    background: radial-gradient(circle, rgba(46, 204, 113, 0.7) 0%, transparent 60%);
    animation: lightPulse 3.3s ease-in-out infinite, lightRotate 12s linear infinite;
}

.company-logo:nth-child(7)::before {
    background: radial-gradient(circle, rgba(52, 152, 219, 0.7) 0%, transparent 60%);
    border-radius: 50%;
    animation: lightPulse 4.2s ease-in-out infinite, lightFloat 4.5s ease-in-out infinite;
}

.company-logo:nth-child(8)::before {
    background: radial-gradient(circle, rgba(155, 89, 182, 0.7) 0%, transparent 60%);
    animation: lightPulse 3.6s ease-in-out infinite, lightRotate 9s linear infinite;
}

.company-logo:nth-child(9)::before {
    background: radial-gradient(circle, rgba(230, 126, 34, 0.7) 0%, transparent 60%);
    animation: lightPulse 3.9s ease-in-out infinite, lightFloat 5.5s ease-in-out infinite;
}

.company-logo:nth-child(10)::before {
    background: radial-gradient(circle, rgba(231, 76, 60, 0.7) 0%, transparent 60%);
    animation: lightPulse 3.4s ease-in-out infinite, lightRotate 11s linear infinite;
}

/* Company Info Section */
.company-info {
    padding: 6rem 3rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Info Grid - Visión y Misión (Deprecated - replaced by vision-mision-grid) */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    animation: slideInFromLeft 1s ease-out;
}

.info-card:nth-child(2) {
    animation: slideInFromRight 1s ease-out 0.2s both;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--verde-gradiente);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.card-icon:hover {
    transform: scale(1.1);
}

.info-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Values Section */
.values-section {
    margin-bottom: 6rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.value-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px) saturate(110%);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    animation: zoomIn 0.8s ease-out;
}

.value-item:nth-child(1) { animation-delay: 0s; }
.value-item:nth-child(2) { animation-delay: 0.1s; }
.value-item:nth-child(3) { animation-delay: 0.2s; }
.value-item:nth-child(4) { animation-delay: 0.3s; }
.value-item:nth-child(5) { animation-delay: 0.4s; }
.value-item:nth-child(6) { animation-delay: 0.5s; }

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.3);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--verde-gradiente);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.value-icon:hover {
    transform: scale(1.1);
}

.value-item h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.value-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Policies Section */
.policies-section {
    margin-bottom: 6rem;
}

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

.policy-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    animation: slideInFromBottom 0.8s ease-out;
}

.policy-item:nth-child(1) { animation-delay: 0s; }
.policy-item:nth-child(2) { animation-delay: 0.2s; }
.policy-item:nth-child(3) { animation-delay: 0.4s; }
.policy-item:nth-child(4) { animation-delay: 0.6s; }

.policy-item:hover {
    transform: translateY(-5px);
    background: rgba(46, 204, 113, 0.1);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.3);
}

.policy-icon {
    width: 70px;
    height: 70px;
    background: var(--verde-gradiente);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.policy-icon:hover {
    transform: scale(1.1);
}

.policy-item h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.policy-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* Stats Section */
.stats-section {
    margin-bottom: 4rem;
    margin-top: 0;
    padding: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 0;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.stat-item:nth-child(1) { animation-delay: 0s; }
.stat-item:nth-child(2) { animation-delay: 0.1s; }
.stat-item:nth-child(3) { animation-delay: 0.2s; }
.stat-item:nth-child(4) { animation-delay: 0.3s; }

.stat-item:hover {
    transform: translateY(-3px);
    background: rgba(46, 204, 113, 0.1);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--verde-principal);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
}

/* Reviews Section */
.reviews-section {
    margin-bottom: 6rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
    background: linear-gradient(135deg, #fff 0%, var(--verde-claro) 50%, var(--azul-claro) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: slideInFromBottom 0.8s ease-out;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.3);
}

.review-stars {
    margin-bottom: 1rem;
}

.review-stars i {
    color: var(--verde-principal);
    font-size: 1.2rem;
    margin-right: 0.2rem;
    transition: all 0.3s ease;
}

.review-stars i:hover {
    transform: scale(1.2);
    color: var(--verde-claro);
}

.review-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.review-author strong {
    color: white;
    font-weight: 600;
}

.review-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Certifications Section */
.certifications-section {
    margin-bottom: 6rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.certification-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.certification-item i {
    font-size: 2.5rem;
    color: var(--verde-principal);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.certification-item:hover i {
    transform: scale(1.1);
}

.certification-item h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.certification-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Routes Section */
.routes-section {
    margin-bottom: 6rem;
}

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

.route-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.route-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.2);
}

.route-icon {
    width: 60px;
    height: 60px;
    background: var(--verde-gradiente);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.route-item h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.route-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.route-time {
    background: var(--verde-gradiente);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}



.service-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    cursor: pointer;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(46, 204, 113, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--verde-gradiente);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

/* Animación de entrada para las cards */
.service-item {
    animation: cardSlideIn 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes cardSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efecto de brillo en hover */
.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item h4 {
    color: var(--verde-claro);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.service-item p {
    color: var(--texto-gris-claro);
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
    flex-grow: 1;
}

.service-learn-more {
    color: var(--verde-principal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-learn-more:hover {
    color: var(--verde-claro);
    transform: translateX(3px);
}

.service-learn-more i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.service-learn-more:hover i {
    transform: translateX(2px);
}

/* Estilos para la imagen principal de servicios */
.services-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem 0;
}

.services-hero-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    position: relative;
    transition: all 0.3s ease;
}

.services-hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(46, 204, 113, 0.3));
    transition: all 0.3s ease;
}

.services-hero-image:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(46, 204, 113, 0.4));
}

/* Responsive para la imagen de servicios */
@media (max-width: 768px) {
    .services-hero-image {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .services-hero-image {
        max-width: 250px;
    }
}

/* Contact Section */
.contact-section {
    margin-bottom: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-content: start;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-header h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.2);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--verde-gradiente);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.contact-icon:hover i {
    transform: scale(1.1);
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.contact-value {
    color: var(--verde-claro);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

/* Social Media */
.social-media {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.social-media h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--verde-gradiente);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.social-link i {
    font-size: 1.2rem;
}

/* Contact Form Container */
.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: fit-content;
    max-height: 80vh;
    overflow-y: auto;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.contact-form {
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    border: none;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--verde-principal);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

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

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Checkbox Styles */
.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    flex-shrink: 0;
    margin-top: 0.2rem;
    transition: all 0.3s ease;
}

.checkbox-input:checked + .checkmark {
    background: var(--verde-principal);
    border-color: var(--verde-principal);
}

.checkbox-input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.terms-link {
    color: var(--verde-claro);
    text-decoration: none;
    font-weight: 600;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.submit-btn i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(3px);
}

/* Responsive Design for Company Info */
@media (max-width: 768px) {
    .company-info {
        padding: 2rem 1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .review-card {
        padding: 0.8rem;
    }
    
    .review-card p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .certification-item {
        padding: 1rem;
    }
    
    .certification-item h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .certification-item p {
        font-size: 0.85rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contact-section {
        min-height: auto;
        padding: 1rem 0;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-container {
        padding: 2rem;
        max-height: none;
    }
    
    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .trusted-header h2 {
        font-size: 1rem;
    }
    
    .company-logo i {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1rem;
    }
    
    .value-item h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .value-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .services-main-title {
        font-size: 2.5rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .services-image img {
        max-width: 400px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .policies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .policy-item {
        padding: 1rem;
    }
    
    .policy-item h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .policy-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-links {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .certification-item {
        padding: 0.8rem;
    }
    
    .certification-item h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .certification-item p {
        font-size: 0.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-item {
        padding: 0.8rem;
    }
    
    .value-item h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .value-item p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .policies-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .policy-item {
        padding: 0.8rem;
    }
    
    .policy-item h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .policy-item p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .trusted-header h2 {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .company-logo {
        padding: 0.8rem;
    }
    
    .company-logo i {
        font-size: 1.8rem;
    }
    
    .services-container {
        gap: 3rem;
    }
    
    .services-main-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .services-image img {
        max-width: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .service-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .service-item p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    /* Estilos específicos para la sección de contacto en pantallas pequeñas */
    .contact-section {
        padding: 0.5rem 0;
        min-height: auto;
    }
    
    .contact-container {
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
    
    .contact-details h4 {
        font-size: 0.9rem;
    }
    
    .contact-value {
        font-size: 0.8rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Botón flotante de WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s ease;
    pointer-events: none;
    max-width: 100vw;
    overflow: visible;
}

.floating-whatsapp.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.floating-whatsapp-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: #128C7E;
}

.floating-whatsapp-link i {
    font-size: 1.8rem;
    z-index: 2;
}

.floating-whatsapp-text {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10;
}

.floating-whatsapp-text::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.9);
}

.floating-whatsapp-link:hover .floating-whatsapp-text {
    opacity: 1;
    right: 80px;
}

/* Burbujas de chat */
.chat-bubbles {
    position: absolute;
    bottom: 65px;
    right: 0;
    z-index: 999;
    pointer-events: none;
}

.chat-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 0.8rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(50px) scale(0.8);
    transition: all 0.4s ease;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.chat-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid rgba(255, 255, 255, 0.95);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.bubble-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bubble-content i {
    color: var(--verde-principal);
    font-size: 1rem;
}

/* Animaciones de las burbujas */
.chat-bubble.show {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.bubble-1 {
    bottom: 85px;
    right: 2px;
    animation-delay: 0s;
    z-index: 1001;
}

.bubble-2 {
    bottom: 55px;
    right: 8px;
    animation-delay: 1s;
    z-index: 1002;
}

.bubble-3 {
    bottom: 25px;
    right: 15px;
    animation-delay: 2s;
    z-index: 1003;
}

/* Animación de entrada de burbujas */
@keyframes bubbleIn {
    0% {
        opacity: 0;
        transform: translateX(50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Animación de rebote para las burbujas */
@keyframes bubbleBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0) scale(1);
    }
    40% {
        transform: translateX(-5px) scale(1.05);
    }
    60% {
        transform: translateX(3px) scale(1.02);
    }
}

.chat-bubble.show {
    opacity: 1;
    transform: translateX(0) scale(1);
    animation: bubbleBounce 0.6s ease-out;
}

/* Efecto de brillo en las burbujas */
.chat-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chat-bubble:hover::before {
    opacity: 1;
}

/* Animación de pulso para el botón principal */
.floating-whatsapp-link {
    animation: pulse 2s infinite;
    position: relative;
}

/* Indicador de notificación */
.floating-whatsapp-link::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #ff4757;
    border-radius: 50%;
    border: 3px solid #fff;
    animation: notificationPulse 1.5s infinite;
    z-index: 3;
}

@keyframes notificationPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Efecto de hover mejorado */
.floating-whatsapp:hover .chat-bubble {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.floating-whatsapp:hover .floating-whatsapp-link {
    animation: none;
    transform: scale(1.1);
}

/* Ondas de sonido alrededor del botón */
.floating-whatsapp-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid #25D366;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    animation: soundWave 2s infinite;
}

@keyframes soundWave {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Efecto de ondas múltiples */
.floating-whatsapp-link {
    animation: pulse 2s infinite, soundWaveMultiple 3s infinite;
}

@keyframes soundWaveMultiple {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    33% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    66% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0.05);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Animaciones para notificaciones */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive para burbujas */
@media (max-width: 768px) {
    .chat-bubble {
        font-size: 0.75rem;
        padding: 0.6rem 0.8rem;
    }
    
    .bubble-1 {
        bottom: 80px;
        right: 1px;
    }
    
    .bubble-2 {
        bottom: 50px;
        right: 6px;
    }
    
    .bubble-3 {
        bottom: 20px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    .chat-bubble {
        font-size: 0.7rem;
        padding: 0.5rem 0.7rem;
        max-width: 120px;
    }
    
    .bubble-content {
        flex-direction: column;
        gap: 0.2rem;
        text-align: center;
    }
    
    .bubble-1 {
        bottom: 75px;
        right: 0px;
    }
    
    .bubble-2 {
        bottom: 45px;
        right: 5px;
    }
    
    .bubble-3 {
        bottom: 15px;
        right: 10px;
    }
} 

/* Secciones principales */
.hero-section-main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 1rem 4rem 1rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-section-main::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(0, 212, 170, 0.15) 0%, 
        rgba(88, 214, 141, 0.08) 25%, 
        rgba(52, 152, 219, 0.05) 50%, 
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(40px);
    animation: sunFloat 25s ease-in-out infinite;
    z-index: -1;
}

.hero-section-main::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, 
        rgba(46, 204, 113, 0.12) 0%, 
        rgba(88, 214, 141, 0.08) 30%, 
        rgba(52, 152, 219, 0.06) 60%, 
        transparent 80%
    );
    border-radius: 50%;
    filter: blur(45px);
    animation: sunFloat2 30s ease-in-out infinite reverse;
    z-index: -1;
}

@keyframes sunFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(-15px, -8px) scale(1.02);
        opacity: 0.8;
    }
    66% {
        transform: translate(10px, 12px) scale(0.98);
        opacity: 0.7;
    }
}

@keyframes sunFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(20px, -10px) scale(1.03);
        opacity: 0.7;
    }
    50% {
        transform: translate(-10px, 15px) scale(0.97);
        opacity: 0.6;
    }
    75% {
        transform: translate(15px, 8px) scale(1.01);
        opacity: 0.8;
    }
}

.quote-section-main {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
}

.quote-section-main::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, 
        rgba(0, 212, 170, 0.12) 0%, 
        rgba(52, 152, 219, 0.08) 30%, 
        rgba(22, 33, 62, 0.06) 60%, 
        transparent 80%
    );
    border-radius: 50%;
    filter: blur(50px);
    animation: sunPulse 20s ease-in-out infinite;
    z-index: -1;
    transform: translateY(-50%);
}

@keyframes sunPulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-50%) scale(1.05);
        opacity: 0.8;
    }
}

.company-section-main {
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

 

/* Centrado general del contenido */
.hero-section-main,
.quote-section-main,
.company-section-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 0 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-left: 1rem;
}

.hero-render, #heroCanvas {
    max-width: 200%;
    height: auto;
    border-radius: 12px;
    transform: scale(1.05);
}

.quote-section {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Grid de Visión y Misión - Ahora separadas */
.vision-mision-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.vision-section,
.mision-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
}

.vision-section .info-card,
.mision-section .info-card {
    width: 100%;
    max-width: 800px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



/* Estilos para secciones organizadas */
.services-section-main,
.values-section-main,
.trusted-companies-main,
.policies-section-main,
.certifications-section-main,
.reviews-section-main,
.contact-section-main {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Efecto sol glass para sección de servicios */
.services-section-main::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, 
        rgba(0, 212, 170, 0.12) 0%, 
        rgba(88, 214, 141, 0.08) 40%, 
        rgba(52, 152, 219, 0.05) 70%, 
        transparent 85%
    );
    border-radius: 50%;
    filter: blur(45px);
    animation: sunGlow 30s ease-in-out infinite;
    z-index: -1;
}

/* Efecto sol glass para sección de valores */
.values-section-main::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 550px;
    height: 750px;
    background: radial-gradient(circle, 
        rgba(52, 152, 219, 0.1) 0%, 
        rgba(0, 212, 170, 0.06) 35%, 
        rgba(22, 33, 62, 0.05) 65%, 
        transparent 80%
    );
    border-radius: 50%;
    filter: blur(55px);
    animation: sunDrift 35s ease-in-out infinite;
    z-index: -1;
}

/* Efecto sol glass para sección de contacto */
.contact-section-main::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, 
        rgba(88, 214, 141, 0.12) 0%, 
        rgba(0, 212, 170, 0.08) 30%, 
        rgba(52, 152, 219, 0.05) 60%, 
        transparent 75%
    );
    border-radius: 50%;
    filter: blur(40px);
    animation: sunRotate 40s linear infinite;
    z-index: -1;
}

@keyframes sunGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    33% {
        transform: translate(-8px, 5px) scale(1.02);
        opacity: 0.7;
    }
    66% {
        transform: translate(6px, -4px) scale(0.99);
        opacity: 0.5;
    }
}

@keyframes sunDrift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(12px, -8px) scale(1.03);
        opacity: 0.6;
    }
}

@keyframes sunRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: rotate(180deg) scale(1.01);
        opacity: 0.6;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.4;
    }
}

/* Efecto sol glass para empresas confiables */
.trusted-companies-main::after {
    content: '';
    position: absolute;
    top: -10%;
    left: 60%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, 
        rgba(52, 152, 219, 0.1) 0%, 
        rgba(0, 212, 170, 0.06) 40%, 
        rgba(88, 214, 141, 0.03) 70%, 
        transparent 85%
    );
    border-radius: 50%;
    filter: blur(35px);
    animation: sunBounce 25s ease-in-out infinite;
    z-index: -1;
}

/* Efecto sol glass para políticas */
.policies-section-main::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, 
        rgba(0, 212, 170, 0.09) 0%, 
        rgba(52, 152, 219, 0.06) 35%, 
        rgba(88, 214, 141, 0.04) 65%, 
        transparent 80%
    );
    border-radius: 50%;
    filter: blur(42px);
    animation: sunWave 28s ease-in-out infinite;
    z-index: -1;
}

@keyframes sunBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-3px) scale(1.01);
        opacity: 0.6;
    }
    50% {
        transform: translateY(2px) scale(1.02);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-1px) scale(1.005);
        opacity: 0.5;
    }
}

@keyframes sunWave {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translateX(5px) scale(1.01);
        opacity: 0.5;
    }
    66% {
        transform: translateX(-3px) scale(1.005);
        opacity: 0.4;
    }
}

.vision-mision-section-main {
    padding: 2rem 0;
    position: relative;
    background: transparent;
    overflow: hidden;
}

.vision-mision-section-main::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(0, 212, 170, 0.08) 0%, 
        rgba(52, 152, 219, 0.05) 25%, 
        rgba(88, 214, 141, 0.04) 50%, 
        rgba(30, 30, 46, 0.02) 75%, 
        transparent 90%
    );
    border-radius: 50%;
    filter: blur(60px);
    animation: sunCenterPulse 45s ease-in-out infinite;
    z-index: -1;
    transform: translateX(-50%);
}

@keyframes sunCenterPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateX(-50%) scale(1.02);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        opacity: 0.7;
    }
    75% {
        transform: translateX(-50%) scale(1.01);
        opacity: 0.4;
    }
}

/* Visión y Misión con imágenes */
.vision-mision-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.vision-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    min-height: 60vh;
}

.mision-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    min-height: 60vh;
}

.vision-text,
.mision-text {
    text-align: left;
    padding: 0;
}

.vision-text h3,
.mision-text h3 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.1;
}

.vision-text p,
.mision-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.card-icon {
    display: none;
}

.vision-image,
.mision-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.vision-img,
.mision-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 8px 25px rgba(46, 204, 113, 0.3));
    transition: transform 0.3s ease;
}

.vision-img:hover,
.mision-img:hover {
    transform: scale(1.02);
}

/* Formulario de contacto compacto */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info-compact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon-compact {
    width: 50px;
    height: 50px;
    background: var(--verde-gradiente);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-compact i {
    font-size: 1.2rem;
    color: white;
}

.contact-details-compact h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details-compact p {
    color: var(--verde-claro);
    font-weight: 600;
    margin: 0;
}

.contact-details-compact span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-form-compact {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-compact h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-row-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group-compact {
    margin-bottom: 1rem;
}

.form-group-compact input,
.form-group-compact select,
.form-group-compact textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group-compact input:focus,
.form-group-compact select:focus,
.form-group-compact textarea:focus {
    outline: none;
    border-color: var(--verde-principal);
    box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.2);
}

.form-group-compact input::placeholder,
.form-group-compact textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn-compact {
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: var(--verde-gradiente);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.submit-btn-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
}

/* Reseñas compactas */
.reviews-compact {
    text-align: center;
    padding: 2rem 0;
}

.reviews-compact h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.reviews-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card-compact {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.review-card-compact .review-stars {
    margin-bottom: 1rem;
}

.review-card-compact .review-stars i {
    color: var(--verde-principal);
    font-size: 1rem;
    margin-right: 0.2rem;
}

.review-card-compact p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1rem;
}

.review-card-compact span {
    color: var(--verde-claro);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive para nuevas secciones */
@media (max-width: 768px) {
    .services-section-main,
    .values-section-main,
    .trusted-companies-main,
    .policies-section-main,
    .certifications-section-main,
    .reviews-section-main,
    .contact-section-main {
        padding: 2rem 0;
    }
    
    .vision-mision-section-main {
        padding: 1.5rem 0;
    }
    
    .vision-mision-grid {
        gap: 4rem;
        padding: 2rem 1rem;
    }
    
    .vision-content,
    .mision-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        min-height: auto;
    }
    
    .vision-text h3,
    .mision-text h3 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .vision-text p,
    .mision-text p {
        font-size: 1.1rem;
    }
    
    .mision-text {
        order: 2;
    }
    
    .mision-image {
        order: 1;
    }
    
    .vision-img,
    .mision-img {
        max-width: 400px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .reviews-grid-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .vision-mision-grid {
        gap: 3rem;
        padding: 1.5rem 0.5rem;
    }
    
    .vision-content,
    .mision-content {
        gap: 2rem;
    }
    
    .vision-text h3,
    .mision-text h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .vision-text p,
    .mision-text p {
        font-size: 1rem;
    }
    
    .vision-img,
    .mision-img {
        max-width: 300px;
    }
    
    .quote-section-main {
        padding: 1.5rem 0;
    }
}

/* Animaciones de aparición al cargar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Aplicar animaciones a elementos específicos */
.hero-text {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.badges {
    animation: fadeInDown 1s ease-out 0s both;
}

.hero-title {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-description {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.quote-section {
    animation: scaleIn 1.2s ease-out 1s both;
}

 

/* Animaciones para otras secciones */
.vision-content {
    animation: fadeInLeft 1s ease-out 0.5s both;
}

.mision-content {
    animation: fadeInRight 1s ease-out 0.7s both;
}

.values-section {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.policies-section {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.certifications-section {
    animation: fadeInUp 1s ease-out 0.7s both;
}

.reviews-section,
.reviews-compact {
    animation: fadeInUp 1s ease-out 0.9s both;
}

.stats-section {
    animation: fadeInUp 1s ease-out 1.1s both;
}

.services-container {
    animation: fadeInUp 1s ease-out 1.3s both;
}

.services-content {
    animation: fadeInLeft 1s ease-out 1.5s both;
}

.services-grid {
    animation: fadeInRight 1s ease-out 1.7s both;
}

.contact-section {
    animation: fadeInUp 1s ease-out 1.5s both;
}

/* Animaciones para elementos individuales */
.value-item {
    animation: fadeInUp 0.8s ease-out both;
}

.value-item:nth-child(1) { animation-delay: 0.4s; }
.value-item:nth-child(2) { animation-delay: 0.5s; }
.value-item:nth-child(3) { animation-delay: 0.6s; }
.value-item:nth-child(4) { animation-delay: 0.7s; }
.value-item:nth-child(5) { animation-delay: 0.8s; }
.value-item:nth-child(6) { animation-delay: 0.9s; }

.policy-item {
    animation: fadeInUp 0.8s ease-out both;
}

.policy-item:nth-child(1) { animation-delay: 0.6s; }
.policy-item:nth-child(2) { animation-delay: 0.7s; }
.policy-item:nth-child(3) { animation-delay: 0.8s; }
.policy-item:nth-child(4) { animation-delay: 0.9s; }

.stat-item {
    animation: fadeInUp 0.8s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.8s; }
.stat-item:nth-child(2) { animation-delay: 0.9s; }
.stat-item:nth-child(3) { animation-delay: 1.0s; }
.stat-item:nth-child(4) { animation-delay: 1.1s; }

.review-card {
    animation: fadeInUp 0.8s ease-out both;
}

.review-card:nth-child(1) { animation-delay: 1.0s; }
.review-card:nth-child(2) { animation-delay: 1.1s; }
.review-card:nth-child(3) { animation-delay: 1.2s; }

.service-item {
    animation: fadeInUp 0.8s ease-out both;
}

.service-item:nth-child(1) { animation-delay: 1.9s; }
.service-item:nth-child(2) { animation-delay: 2.0s; }
.service-item:nth-child(3) { animation-delay: 2.1s; }
.service-item:nth-child(4) { animation-delay: 2.2s; }

/* Mejorar las animaciones existentes */
.vision-text,
.mision-text {
    animation: scaleIn 1s ease-out 0.3s both;
}

.vision-img,
.mision-img {
    animation: scaleIn 1s ease-out 0.5s both;
}

/* Animación del botón de WhatsApp flotante - NO aparece al inicio */
.floating-whatsapp {
    animation: fadeInRight 1s ease-out 8s both;
}

/* Mejorar las transiciones generales */
* {
    transition: all 0.3s ease;
}



/* Animación de entrada para el header */
.header {
    animation: fadeInDown 1s ease-out 0.2s both;
}

/* Estilos optimizados para el video hero y canvas */
.hero-render {
    background: transparent !important;
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
    will-change: transform;
    transform: translateZ(0); /* Forzar aceleración por hardware */
    max-width: 140%;
}

/* Estilos optimizados para el canvas hero sin fondo */
#heroCanvas {
    max-width: 140%;
    height: auto;
    border-radius: 12px;
    transform: scale(0.7) translateZ(0); /* Escalar para compactar sin recortar */
    background: transparent !important;
    display: block;
    margin: 0 auto;
    will-change: transform;
    backface-visibility: hidden; /* Optimizar renderizado */
    perspective: 1000px; /* Mejorar rendimiento 3D */
}

/* Contenedor optimizado de la imagen hero sin fondo */
.hero-image {
    background: transparent !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
    will-change: transform;
    transform: translateZ(0); /* Forzar aceleración por hardware */
    backface-visibility: hidden;
    perspective: 1000px;
    max-width: 100%;
}

/* Animaciones de aparición tras scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.7s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Delays para animaciones escalonadas */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Animación para elementos que aparecen desde abajo */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animación para elementos que aparecen con zoom */
.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Animación para elementos que aparecen con rotación */
.rotate-in {
    opacity: 0;
    transform: rotate(-5deg) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rotate-in.visible {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Estilos para iconos de servicios */
.service-icon {
    width: 45px;
    height: 45px;
    background: var(--verde-gradiente);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 3px 10px rgba(46, 204, 113, 0.2);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-icon i {
    font-size: 1.1rem;
    color: var(--texto-blanco);
    z-index: 1;
    position: relative;
}

.service-item:hover .service-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
}

.service-item:hover .service-icon::before {
    transform: translateX(100%);
}

/* Mejoras para la sección de servicios */
.services-section {
    padding: 4rem 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    cursor: pointer;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(46, 204, 113, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--verde-gradiente);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

/* Animación de entrada para las cards */
.service-item {
    animation: cardSlideIn 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes cardSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efecto de brillo en hover */
.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item h4 {
    color: var(--verde-claro);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.service-item p {
    color: var(--texto-gris-claro);
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
    flex-grow: 1;
}

.service-learn-more {
    color: var(--verde-principal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-learn-more:hover {
    color: var(--verde-claro);
    transform: translateX(3px);
}

.service-learn-more i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.service-learn-more:hover i {
    transform: translateX(2px);
}

/* Estilos para la imagen principal de servicios */
.services-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem 0;
}

.services-hero-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    position: relative;
    transition: all 0.3s ease;
}

.services-hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(46, 204, 113, 0.3));
    transition: all 0.3s ease;
}

.services-hero-image:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(46, 204, 113, 0.4));
}

/* Responsive para la imagen de servicios */
@media (max-width: 768px) {
    .services-hero-image {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .services-hero-image {
        max-width: 250px;
    }
}

/* Estilos para la sección principal de servicios (cards izquierda, texto derecha) */


/* Estilos nuevos para la sección de servicios - Diseño KuCoin */
.services-section-main {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.services-section {
    position: relative;
    z-index: 2;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.services-main-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
    width: 100%;
}

.services-cards-left {
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.services-grid > div {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-grid > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2ECC71, #27AE60);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.services-grid > div:hover::before {
    transform: scaleX(1);
}

.services-grid > div:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.services-grid > div > div:first-child {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.services-grid > div:hover > div:first-child {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}

.services-grid > div > div:first-child i {
    font-size: 1.5rem;
    color: white;
}

.services-grid > div h4 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.services-grid > div p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.services-grid > div a {
    color: #2ECC71;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.services-grid > div a:hover {
    color: #58D68D;
    transform: translateX(5px);
}

.services-grid > div a i {
    transition: transform 0.3s ease;
}

.services-grid > div a:hover i {
    transform: translateX(3px);
}

.services-text-right {
    text-align: left;
    padding: 2rem 0;
}

.services-image-container {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.2);
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.services-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.services-image-container:hover .services-image {
    transform: scale(1.05);
}

.services-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(46, 204, 113, 0.2) 0%,
        rgba(52, 152, 219, 0.2) 100%
    );
}

.services-right-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    background: linear-gradient(135deg, #2ECC71, #58D68D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-right-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Media queries para responsividad */
@media (max-width: 1024px) {
    .services-main-section {
        gap: 3rem;
    }
    
    .services-grid {
        gap: 1.2rem;
    }
    
    .services-right-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .services-container {
        padding: 0 1rem;
    }
    
    .services-main-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .services-grid > div {
        padding: 1.5rem;
        min-height: 180px;
    }
    
    .services-right-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .services-right-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .services-image {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .services-container {
        padding: 0 0.5rem;
    }
    
    .services-main-section {
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-grid > div {
        padding: 1rem;
        min-height: auto;
    }
    
    .services-grid > div h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .services-grid > div p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .services-right-title {
        font-size: 1.8rem;
    }
    
    .services-right-description {
        font-size: 0.95rem;
    }
    
    .services-image {
        max-height: 250px;
    }
}

/* Estilos para la sección de blogs */
.blogs-section-main {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.blogs-section {
    position: relative;
    z-index: 1;
}

.blogs-section h3 {
    text-align: center;
    color: var(--texto-gris-claro);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.blogs-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
    padding: 0 1rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
    padding: 0 2rem;
    width: 100%;
}

.blog-card {
    width: 360px;
    min-width: 320px;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.blog-card:hover .blog-card-overlay {
    opacity: 1;
}

.blog-category {
    background: rgba(46, 204, 113, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(46, 204, 113, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.blog-category i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--texto-blanco);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--texto-gris-claro);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    color: var(--texto-gris);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-card-link {
    color: var(--verde-principal);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.blog-card-link:hover {
    color: var(--verde-claro);
    transform: translateX(5px);
}

.blog-card-link i {
    transition: transform 0.3s ease;
}

.blog-card-link:hover i {
    transform: translateX(3px);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 20;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    margin: 0;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 25;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Estilos para páginas de blog individuales */
.blog-section {
    padding: 8rem 0 4rem;
    position: relative;
    z-index: 1;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.blog-header {
    margin-bottom: 2rem;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--texto-blanco);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--texto-gris-claro);
    font-size: 0.9rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.blog-main-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.blog-text {
    color: var(--texto-gris-claro);
    line-height: 1.8;
}

.blog-text h2 {
    color: var(--texto-blanco);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.blog-text h3 {
    color: var(--texto-blanco);
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.blog-text p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.blog-text ul, .blog-text ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.blog-text li {
    margin-bottom: 0.5rem;
}

.blog-intro {
    font-size: 1.1rem;
    color: var(--texto-gris-claro);
    font-weight: 500;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(46, 204, 113, 0.1);
    border-left: 4px solid var(--verde-principal);
    border-radius: 0 8px 8px 0;
}

.blog-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-cta h3 {
    color: var(--texto-blanco);
    margin-bottom: 1rem;
}

.blog-cta p {
    margin-bottom: 1.5rem;
    color: var(--texto-gris-claro);
}

/* Responsive para blogs */
@media (max-width: 768px) {
    .blogs-carousel {
        padding: 0 1rem;
    }
    
    .carousel-track {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .blog-card {
        width: 300px;
        min-width: 280px;
        max-width: 320px;
    }
    
    .blog-card-content {
        padding: 1rem;
    }
    
    .blog-card-title {
        font-size: 1.1rem;
    }
    
    .blog-card-excerpt {
        font-size: 0.85rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        margin: 0;
    }
    
    .blog-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-meta {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .blogs-carousel {
        padding: 0 0.5rem;
    }
    
    .carousel-track {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .blog-card {
        width: 280px;
        min-width: 250px;
        max-width: 280px;
    }
    
    .blog-card-image {
        height: 150px;
    }
    
    .blog-card-content {
        padding: 0.8rem;
    }
    
    .blog-card-title {
        font-size: 1rem;
    }
    
    .blog-card-excerpt {
        font-size: 0.8rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        margin: 0;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.8rem;
    }
    
    .blog-text h2 {
        font-size: 1.5rem;
    }
    
    .blog-text h3 {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        min-width: 160px;
    }
}

/* Estilos para la página de blogs */
.blogs-hero-section {
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.blogs-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.blogs-hero-subtitle {
    font-size: 1.3rem;
    color: var(--texto-gris-claro);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.blogs-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.blogs-hero-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.blogs-hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--verde-principal);
    margin-bottom: 0.5rem;
}

.blogs-hero-stats .stat-label {
    color: var(--texto-gris-claro);
    font-size: 0.9rem;
}

.blogs-grid-section {
    padding: 4rem 0 8rem;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-article {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.blog-article:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.blog-article-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-article:hover .blog-article-image img {
    transform: scale(1.1);
}

.blog-article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(46, 204, 113, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(46, 204, 113, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.blog-article-content {
    padding: 2rem;
}

.blog-article-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--texto-blanco);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-article-excerpt {
    color: var(--texto-gris-claro);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--texto-gris);
    flex-wrap: wrap;
}

.blog-article-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-article-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(46, 204, 113, 0.2);
    color: var(--verde-principal);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.blog-article-link {
    color: var(--verde-principal);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.blog-article-link:hover {
    color: var(--verde-claro);
    transform: translateX(5px);
}

.blog-article-link i {
    transition: transform 0.3s ease;
}

.blog-article-link:hover i {
    transform: translateX(3px);
}



/* Estilos para nav-link activo */
.nav-link.active {
    color: var(--verde-principal);
    background: rgba(46, 204, 113, 0.1);
    border-color: var(--verde-principal);
}

/* Responsive para página de blogs */
@media (max-width: 768px) {
    .blogs-hero-title {
        font-size: 2.5rem;
    }
    
    .blogs-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .blogs-hero-stats {
        gap: 1.5rem;
    }
    
    .blogs-hero-stats .stat-item {
        padding: 1rem;
    }
    
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-article-content {
        padding: 1.5rem;
    }
    
    .blog-article-title {
        font-size: 1.2rem;
    }
    
    .blog-article-meta {
        gap: 1rem;
        font-size: 0.8rem;
    }
    

}

@media (max-width: 480px) {
    .blogs-hero-title {
        font-size: 2rem;
    }
    
    .blogs-hero-stats {
        gap: 1rem;
    }
    
    .blogs-hero-stats .stat-item {
        padding: 0.8rem;
    }
    
    .blogs-hero-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .blog-article-image {
        height: 200px;
    }
    
    .blog-article-content {
        padding: 1rem;
    }
    
    .blog-article-title {
        font-size: 1.1rem;
    }
    

}

/* FOOTER */
.footer {
    background: #0f1419;
    border-top: 1px solid rgba(46, 204, 113, 0.15);
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

/* Focos animados dentro del footer */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle 300px at 20% 30%, rgba(46, 204, 113, 0.12) 0%, transparent 70%),
        radial-gradient(circle 250px at 80% 70%, rgba(52, 152, 219, 0.08) 0%, transparent 70%),
        radial-gradient(circle 400px at 50% 90%, rgba(88, 214, 141, 0.06) 0%, transparent 70%);
    animation: footerFocusFloat 120s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

/* Focos adicionales con diferentes velocidades */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle 200px at 80% 20%, rgba(52, 152, 219, 0.08) 0%, transparent 70%),
        radial-gradient(circle 350px at 20% 80%, rgba(88, 214, 141, 0.05) 0%, transparent 70%),
        radial-gradient(circle 150px at 60% 40%, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
    animation: footerFocusFloat2 90s ease-in-out infinite reverse;
    z-index: 1;
    pointer-events: none;
}

/* Animaciones para los focos del footer */
@keyframes footerFocusFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(-15px, -8px) scale(1.02);
        opacity: 0.5;
    }
    50% {
        transform: translate(12px, 10px) scale(0.98);
        opacity: 0.4;
    }
    75% {
        transform: translate(-8px, 15px) scale(1.01);
        opacity: 0.6;
    }
}

@keyframes footerFocusFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
    33% {
        transform: translate(18px, -12px) scale(1.03);
        opacity: 0.4;
    }
    66% {
        transform: translate(-10px, 8px) scale(0.97);
        opacity: 0.3;
    }
}

/* Focos expandiéndose en elementos específicos del footer */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

/* Focos en las secciones del footer */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
}

/* Focos expandiéndose en elementos interactivos */
.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    opacity: 0;
    z-index: -1;
}

.footer-section:hover::before {
    width: 200px;
    height: 200px;
    opacity: 1;
}

/* Focos en enlaces del footer */
.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding: 0.5rem 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--verde-principal), var(--azul-acento));
    transform: translateY(-50%);
    transition: width 0.4s ease;
    border-radius: 1px;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Focos en botones sociales */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 50%;
    color: var(--texto-blanco);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.social-link:hover::before {
    width: 60px;
    height: 60px;
}

.social-link:hover {
    background: var(--verde-principal);
    border-color: var(--verde-principal);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.4);
}

/* Focos en el botón de WhatsApp del footer */
.footer-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--verde-principal);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: -1;
}

.footer-whatsapp-btn:hover::before {
    width: 200px;
    height: 200px;
}

.footer-whatsapp-btn:hover {
    background: var(--verde-claro);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

/* Focos en badges de certificación */
.certification-badge {
    background: rgba(46, 204, 113, 0.2);
    border: 1px solid rgba(46, 204, 113, 0.4);
    color: var(--verde-principal);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.certification-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.certification-badge:hover::before {
    width: 120px;
    height: 120px;
}

.certification-badge:hover {
    background: rgba(46, 204, 113, 0.3);
    border-color: var(--verde-principal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.4);
}

/* Restaurar estilos originales del footer que fueron eliminados */
.footer-company {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--texto-blanco);
    margin: 0;
}

.footer-company-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

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

.social-link i {
    font-size: 1.2rem;
}

.footer-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--texto-blanco);
    margin: 0;
    position: relative;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--verde-principal);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a::before {
    content: '→';
    color: var(--verde-principal);
    font-weight: bold;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--verde-principal);
    transform: translateX(5px);
}

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

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-contact-item i {
    color: var(--verde-principal);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-contact-item p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.95rem;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(46, 204, 113, 0.2) 30%,
        rgba(46, 204, 113, 0.4) 50%,
        rgba(46, 204, 113, 0.2) 70%,
        transparent 100%);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

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

.footer-cta {
    display: flex;
    align-items: center;
}

.footer-whatsapp-btn i {
    font-size: 1.2rem;
}

/* Responsive del footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-company {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 2rem 1rem 1.5rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-certifications {
        justify-content: center;
    }
    
    .footer-whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 1.5rem 1rem 1rem;
    }
    
    .footer-company-name {
        font-size: 1.3rem;
    }
    
    .footer-section-title {
        font-size: 1.1rem;
    }
    
    .footer-contact-item {
        gap: 0.8rem;
    }
    
    .footer-contact-item i {
        font-size: 1rem;
    }
    
    .footer-contact-item p {
        font-size: 0.9rem;
    }
    
    .certification-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}



