/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #001632;
    background-color: #FFFFFF;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #001632;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 10px 15px 10px 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    transform-origin: center;
}

/* El texto mantiene el color azul oscuro en hover */
.nav-link:hover {
    color: #001632;
    transform: scale(1.08) translateX(-5px);
}

/* Icono SVG superpuesto - mitad dentro, mitad fuera */
.nav-link::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 20px;
    background-image: url('../img/hover_nav.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.nav-link:hover::after {
    width: 20px;
    opacity: 1;
    right: -12px;
}

/* Botón de contacto mejorado */
.nav-contact {
    background: linear-gradient(135deg, #FC4303, #D63700);
    color: #FFFFFF !important;
    padding: 12px 25px 12px 20px !important;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    font-weight: 600 !important;
    margin-left: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(252, 67, 3, 0.2);
}

.nav-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #001632, #002A5C);
    transition: left 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.nav-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 22, 50, 0.3);
    color: #FFFFFF;
}

.nav-contact:hover::before {
    left: 0;
}

/* Efecto de pulso adicional en hover */
.nav-contact::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.nav-contact:hover::after {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

/* Icono de WhatsApp */
.whatsapp-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.nav-contact:hover .whatsapp-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Menú hamburguesa para móviles */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #001632;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Estilos para el menú desplegable - SOLUCIÓN DEFINITIVA */
.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0;
    margin-top: 10px;
    width: auto;
    min-width: 300px;
    max-width: calc(100vw - 40px); /* Asegura que nunca exceda el viewport */
    right: 0; /* Fuerza a que el borde derecho se mantenga dentro */
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-container {
    display: flex;
    padding: 30px;
    gap: 40px;
    max-height: 70vh;
    overflow-y: auto;
    box-sizing: border-box;
}

.dropdown-column {
    flex: 1;
    min-width: 200px;
    max-width: 250px; /* Limita el ancho máximo de cada columna */
}

.dropdown-section {
    margin-bottom: 25px;
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

.dropdown-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #001632;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #FC4303;
    white-space: nowrap;
}

.dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-link {
    display: block;
    padding: 8px 0;
    color: #001632;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.dropdown-link:hover {
    color: #FC4303;
    transform: translateX(5px);
}

/* Ajustes para el enlace de servicios en el navbar */
.nav-item.dropdown .nav-link::after {
    display: none;
}

/* SOLUCIÓN DEFINITIVA: Forzar que el menú se ajuste al viewport */
@media (min-width: 969px) {
    .dropdown-menu {
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        width: min(1200px, 95vw); /* Usa el menor valor entre 1200px y 95% del viewport */
        max-width: calc(100vw - 40px);
    }
    
    .dropdown:hover .dropdown-menu {
        transform: translateX(-50%) translateY(0);
    }
    
    .dropdown-container {
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Asegurar que las columnas se distribuyan correctamente */
    .dropdown-column {
        flex: 1;
        min-width: 0; /* Permite que se reduzcan */
    }
}

/* Ajustes para pantallas más pequeñas de escritorio */
@media (max-width: 1200px) and (min-width: 969px) {
    .dropdown-menu {
        width: min(1000px, 95vw);
    }
    
    .dropdown-container {
        padding: 25px;
        gap: 30px;
    }
    
    .dropdown-column {
        min-width: 180px;
    }
}

@media (max-width: 1024px) and (min-width: 969px) {
    .dropdown-menu {
        width: min(900px, 95vw);
    }
    
    .dropdown-container {
        padding: 20px;
        gap: 25px;
    }
}

/* RESPONSIVE PARA MÓVIL */
@media (max-width: 968px) {
    .dropdown-menu {
        position: static;
        width: 100%;
        max-width: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        display: none;
        margin-top: 0;
    }

    .dropdown-container {
        flex-direction: column;
        padding: 20px 0;
        gap: 20px;
        max-height: none;
        overflow-y: visible;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-item.dropdown .nav-link {
        justify-content: space-between;
    }

    .dropdown-arrow {
        transform: rotate(0);
    }

    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .dropdown-title {
        white-space: normal;
    }
    
    .dropdown-column {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background-color: #FFFFFF;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        padding: 40px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 20px;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .dropdown-menu {
        display: none;
        background: rgba(0, 22, 50, 0.02);
        border-radius: 8px;
        margin-top: 10px;
        padding: 0 15px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-container {
        padding: 15px 0;
    }

    .dropdown-title {
        font-size: 0.85rem;
    }

    .dropdown-link {
        font-size: 0.9rem;
        padding: 6px 0;
    }
}

@media (max-width: 480px) {
    .dropdown-container {
        padding: 10px 0;
        gap: 15px;
    }
    
    .dropdown-section {
        margin-bottom: 20px;
    }
    
    .dropdown-link {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

/* Scroll personalizado para el dropdown */
.dropdown-container::-webkit-scrollbar {
    width: 6px;
}

.dropdown-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.dropdown-container::-webkit-scrollbar-thumb {
    background: #FC4303;
    border-radius: 3px;
}

.dropdown-container::-webkit-scrollbar-thumb:hover {
    background: #D63700;
}

/* Garantizar que el menú nunca se salga de la pantalla */
.nav-container {
    position: relative;
}

.nav-menu {
    position: relative;
}
/* === ESTILOS DEL SLIDER CORREGIDOS === */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    transition: transform 1.2s ease;
}

.slide.active .slide-background img {
    transform: scale(1.05);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #FFFFFF;
    /* Aumentamos el padding-top para evitar que el badge se corte */
    padding-top: 100px;
}

/* Badge - Corregido para no cortarse */
.slide-badge {
    display: inline-block;
    background: rgba(252, 67, 3, 0.9);
    color: #FFFFFF;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    align-self: flex-start;
    animation: slideInLeft 0.8s ease-out;
    /* Aseguramos que tenga suficiente margen superior */
    margin-top: 10px;
}

/* Título principal */
.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 0.8s ease-out 0.1s both;
}

/* Descripción */
.slide-description {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

/* Píldoras de cobertura */
.coverage-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2.5rem;
    animation: slideInLeft 0.8s ease-out 0.3s both;
}

.coverage-pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.coverage-pill:hover {
    background: rgba(252, 67, 3, 0.8);
    transform: translateY(-2px);
}

/* Destacados - CORREGIDOS */
.slide-highlight {
    display: flex;
    gap: 40px;
    margin-bottom: 3rem;
    animation: slideInLeft 0.8s ease-out 0.4s both;
    align-items: center; /* Centramos verticalmente todos los items */
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80px; /* Altura mínima para alineación consistente */
}

.highlight-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FC4303;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.highlight-label {
    display: block;
    font-size: 0.9rem;
    color: #FC4303; /* Cambiado a naranja corporativo */
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    line-height: 1.2;
}

/* Grupo de botones CTA */
.cta-group {
    display: flex;
    gap: 20px;
    animation: slideInLeft 0.8s ease-out 0.5s both;
}

.cta-button {
    padding: 16px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, #FC4303, #D63700);
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(252, 67, 3, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(252, 67, 3, 0.4);
    background: linear-gradient(135deg, #001632, #002A5C);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Controles del slider */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.slider-control:hover {
    background: rgba(252, 67, 3, 0.8);
    border-color: #FC4303;
    transform: translateY(-50%) scale(1.1);
}

.slider-control.prev {
    left: 30px;
}

.slider-control.next {
    right: 30px;
}

.slider-control svg {
    width: 24px;
    height: 24px;
}

/* Indicadores */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #FC4303;
    border-color: #FC4303;
    transform: scale(1.2);
}

.indicator:hover {
    border-color: #FC4303;
    transform: scale(1.1);
}

/* Animaciones */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive - CORREGIDO */
@media (max-width: 1024px) {
    .slide-content h1 {
        font-size: 3rem;
    }
    
    .slide-highlight {
        gap: 30px;
    }
    
    .highlight-value {
        font-size: 2rem;
    }
    
    .highlight-item {
        min-height: 70px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .slide-content {
        padding-top: 100px; /* Mantenemos el padding aumentado en móviles */
        text-align: center;
    }

    .slide-badge {
        align-self: center;
        margin-top: 5px; /* Ajuste para móviles */
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .slide-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .coverage-pills {
        justify-content: center;
        gap: 8px;
    }

    .coverage-pill {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .slide-highlight {
        justify-content: center;
        gap: 25px;
        margin-bottom: 2rem;
    }

    .highlight-value {
        font-size: 1.8rem;
    }
    
    .highlight-item {
        min-height: 60px;
    }

    .cta-group {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
        min-width: 200px;
    }

    .slider-control {
        width: 50px;
        height: 50px;
    }

    .slider-control.prev {
        left: 15px;
    }

    .slider-control.next {
        right: 15px;
    }

    .slider-indicators {
        bottom: 20px;
    }
    
    /* Navbar mobile corrections */
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background-color: #FFFFFF;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        padding: 40px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 20px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Ajuste para el icono SVG en móviles */
    .nav-link::after {
        right: -5px;
    }
    
    .nav-link:hover::after {
        right: -8px;
    }
    
    .nav-contact {
        margin-left: 0;
        margin-top: 10px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.8rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .slide-highlight {
        gap: 20px;
    }

    .highlight-value {
        font-size: 1.5rem;
    }

    .highlight-label {
        font-size: 0.8rem;
    }
    
    .highlight-item {
        min-height: 55px;
    }

    .coverage-pill {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .slide-badge {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

/* === SECCIÓN ELIGE SEGURO === */
.choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.02"><polygon fill="%23001632" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.choose-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.choose-header h2 {
    font-size: 3rem;
    color: #001632;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.1;
}

.choose-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 22, 50, 0.05);
    text-align: center;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(252, 67, 3, 0.05), rgba(0, 22, 50, 0.05));
    transition: left 0.6s ease;
    z-index: 0;
}

.product-card:hover::before {
    left: 0;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(252, 67, 3, 0.2);
}

.product-icon {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-card h3 {
    font-size: 1.5rem;
    color: #001632;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.product-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.product-hover {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #FC4303, #D63700);
    color: white;
    padding: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    z-index: 2;
}

.product-card:hover .product-hover {
    bottom: 0;
    opacity: 1;
}

.product-hover span {
    font-weight: 600;
    font-size: 0.95rem;
}

.choose-cta {
    text-align: center;
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #001632, #002A5C);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 22, 50, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FC4303, #D63700);
    transition: left 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

.whatsapp-cta:hover::before {
    left: 0;
}

.whatsapp-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(252, 67, 3, 0.4);
}

.cta-text {
    position: relative;
    z-index: 2;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    opacity: 0;
    transform: scale(0.8) translateX(-10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.whatsapp-cta:hover .whatsapp-icon {
    opacity: 1;
    transform: scale(1) translateX(0);
}

/* Animaciones para scroll */
[data-scroll] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

[data-scroll].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .choose-header h2 {
        font-size: 2.5rem;
    }
    
    .choose-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .choose-section {
        padding: 60px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        padding: 30px 20px;
    }
    
    .choose-header h2 {
        font-size: 2.2rem;
    }
    
    .choose-subtitle {
        font-size: 1.1rem;
    }
    
    .whatsapp-cta {
        padding: 16px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .choose-header h2 {
        font-size: 1.8rem;
    }
    
    .choose-subtitle {
        font-size: 1rem;
    }
    
    .product-card h3 {
        font-size: 1.3rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* === SECCIÓN ASEGURADORAS === */
.insurers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.insurers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.02"><polygon fill="%23001632" points="0,0 1000,1000 0,1000"/></svg>');
    background-size: cover;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #001632;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.insurers-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.insurers-carousel-track {
    display: flex;
    animation: scroll 40s linear infinite;
    gap: 40px;
    padding: 0 20px;
}

.insurers-carousel-container:hover .insurers-carousel-track {
    animation-play-state: paused;
}

.insurer-item {
    flex: 0 0 auto;
    width: 200px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.insurer-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.insurer-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.insurer-item:hover .insurer-logo {
    box-shadow: 0 15px 35px rgba(252, 67, 3, 0.2);
    border-color: #FC4303;
    transform: scale(1.1);
}

.insurer-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(252, 67, 3, 0.1), rgba(0, 22, 50, 0.05));
    transition: left 0.6s ease;
    z-index: 1;
}

.insurer-item:hover .insurer-logo::before {
    left: 0;
}

.insurer-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    filter: grayscale(0.3) brightness(0.9);
}

.insurer-item:hover .insurer-logo img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.1);
}

.insurer-name {
    display: block;
    font-weight: 600;
    color: #001632;
    font-size: 1rem;
    margin-top: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.insurer-item:hover .insurer-name {
    color: #FC4303;
    transform: translateY(2px);
}

.insurer-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #FC4303;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.insurer-item:hover .insurer-name::after {
    width: 30px;
}

/* Efecto de brillo al hover */
.insurer-item::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at center, rgba(252, 67, 3, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 25px;
}

.insurer-item:hover::after {
    opacity: 1;
}

/* Animación del carrusel */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 6 - 40px * 6));
    }
}

/* Animaciones para scroll */
[data-scroll] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

[data-scroll].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .insurer-item {
        width: 180px;
    }
    
    .insurer-logo {
        width: 100px;
        height: 100px;
    }
    
    .insurer-logo img {
        width: 70px;
        height: 70px;
    }
    
    @keyframes scroll {
        100% {
            transform: translateX(calc(-180px * 6 - 40px * 6));
        }
    }
}

@media (max-width: 768px) {
    .insurers-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .insurer-item {
        width: 150px;
    }
    
    .insurer-logo {
        width: 90px;
        height: 90px;
    }
    
    .insurer-logo img {
        width: 60px;
        height: 60px;
    }
    
    .insurer-name {
        font-size: 0.9rem;
    }
    
    .insurers-carousel-track {
        gap: 30px;
        animation-duration: 35s;
    }
    
    @keyframes scroll {
        100% {
            transform: translateX(calc(-150px * 6 - 30px * 6));
        }
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .insurer-item {
        width: 130px;
    }
    
    .insurer-logo {
        width: 80px;
        height: 80px;
    }
    
    .insurer-logo img {
        width: 50px;
        height: 50px;
    }
    
    .insurer-name {
        font-size: 0.85rem;
    }
    
    .insurers-carousel-track {
        gap: 25px;
        animation-duration: 30s;
    }
    
    @keyframes scroll {
        100% {
            transform: translateX(calc(-130px * 6 - 25px * 6));
        }
    }
}

/* Pausa suave al hover */
.insurers-carousel-track {
    transition: animation-play-state 0.3s ease;
}

/* Estilos para la sección de contacto - Versión Moderna */
.contact-section {
    background: linear-gradient(135deg, #001632 0%, #0a2a4a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(252, 67, 3, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(252, 67, 3, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.contact-section .section-header h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #FC4303 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.contact-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FC4303, #ff6b35);
    border-radius: 2px;
}

.contact-section .section-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

/* Información de contacto - Lado izquierdo */
.contact-info {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease 0.5s forwards;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(252, 67, 3, 0.3);
    position: relative;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #FC4303;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 50px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(252, 67, 3, 0.2), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: rgba(252, 67, 3, 0.1);
    border-color: rgba(252, 67, 3, 0.3);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(252, 67, 3, 0.2);
}

.social-link svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.2);
}

.direct-contact {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #FC4303;
    border-radius: 2px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: white;
    border-bottom-color: rgba(252, 67, 3, 0.5);
    transform: translateX(5px);
}

.contact-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #FC4303;
}

/* Formulario - Lado derecho */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s ease 0.5s forwards;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FC4303, #ff6b35);
}

.contact-form h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #FC4303 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.form-group:nth-child(1) { animation-delay: 0.7s; }
.form-group:nth-child(2) { animation-delay: 0.8s; }
.form-group:nth-child(3) { animation-delay: 0.9s; }
.form-group:nth-child(4) { animation-delay: 1.0s; }
.form-group:nth-child(5) { animation-delay: 1.1s; }

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: white;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FC4303;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(252, 67, 3, 0.1);
    transform: translateY(-2px);
}

.form-group select option {
    background: #001632;
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Efecto de línea animada en los inputs */
.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FC4303, #ff6b35);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.form-group:focus-within::after {
    width: 100%;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #FC4303 0%, #ff6b35 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 1.2s forwards;
}

.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.6s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 25px rgba(252, 67, 3, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.1);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Animaciones */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Efectos de partículas en el fondo */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(252, 67, 3, 0.1);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.particle:nth-child(1) {
    width: 6px;
    height: 6px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle:nth-child(2) {
    width: 4px;
    height: 4px;
    top: 60%;
    left: 20%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.particle:nth-child(3) {
    width: 8px;
    height: 8px;
    top: 40%;
    left: 80%;
    animation-delay: 10s;
    animation-duration: 20s;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info,
    .contact-form {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease 0.5s forwards;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section .section-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-section .section-header p {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.5rem;
    }
}

/* Estilos para el footer moderno */
.site-footer {
    background: linear-gradient(135deg, #ff7e5f, #feb47b, #ff7e5f);
    background-size: 400% 400%;
    color: white;
    padding: 50px 0 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Ondas animadas */
.footer-waves {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
}

.wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0 0v46.29c47.79 22.2 103.59 32.17 158 28 70.36-5.37 136.33-33.31 206.8-37.5 73.84-4.36 147.54 16.88 218.2 35.26 69.27 18 138.3 24.88 209.4 13.08 36.15-6 69.85-17.84 104.45-29.34C989.49 25 1113-14.29 1200 52.47V0z" fill="%23ff7e5f"/></svg>');
    background-size: 50% 100%;
    opacity: 0.7;
}

.wave-1 {
    animation: waveMove 15s linear infinite;
}

.wave-2 {
    animation: waveMove 12s linear infinite reverse;
    opacity: 0.5;
}

.wave-3 {
    animation: waveMove 10s linear infinite;
    opacity: 0.3;
}

@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Partículas flotantes */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.particle:nth-child(1) {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    width: 12px;
    height: 12px;
    top: 60%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 25s;
}

.particle:nth-child(3) {
    width: 6px;
    height: 6px;
    top: 40%;
    left: 80%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 40%;
    animation-delay: 1s;
    animation-duration: 22s;
}

.particle:nth-child(5) {
    width: 14px;
    height: 14px;
    top: 30%;
    left: 60%;
    animation-delay: 3s;
    animation-duration: 30s;
}

.particle:nth-child(6) {
    width: 7px;
    height: 7px;
    top: 70%;
    left: 90%;
    animation-delay: 5s;
    animation-duration: 17s;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px) translateX(20px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-30px) translateX(10px) rotate(270deg);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
        opacity: 1;
    }
}

/* === FOOTER MINIMALISTA === */
.site-footer {
    background: linear-gradient(135deg, #0a1929 0%, #001632 100%);
    color: white;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FC4303, transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    text-align: center;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 4px;
    position: relative;
}

.footer-link:hover {
    color: #FC4303;
    background: rgba(252, 67, 3, 0.1);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #FC4303;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-link:hover::after {
    width: 80%;
}

.footer-copyright {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.footer-credit {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

/* Enlace Monster Marketing - Versión Minimalista */
.monster-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(135deg, #FC4303, #ff6b35);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    padding: 2px 6px;
    border-radius: 3px;
    position: relative;
}

.monster-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FC4303, #ff6b35);
    border-radius: 3px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.monster-link:hover {
    transform: translateY(-1px);
    text-shadow: 0 2px 8px rgba(252, 67, 3, 0.4);
}

.monster-link:hover::before {
    opacity: 0.1;
}

/* Línea decorativa sutil */
.footer-content::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FC4303, transparent);
    border-radius: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 25px 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
        flex: none;
    }
    
    .footer-credit {
        justify-content: center;
    }
    
    .footer-link {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .footer-copyright {
        font-size: 0.9rem;
    }
    
    .footer-credit {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-link {
        font-size: 0.85rem;
        padding: 5px 10px;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .footer-credit {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 2px;
    }
}

/* Animación sutil de entrada */
.site-footer {
    opacity: 0;
    transform: translateY(20px);
    animation: footerFadeIn 0.8s ease 0.3s forwards;
}

@keyframes footerFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === MODAL DE PRODUCTO === */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 22, 50, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2001;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 22, 50, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2002;
}

.modal-close:hover {
    background: #FC4303;
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, #001632, #002A5C);
    color: white;
    padding: 40px 40px 30px;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="%23FFFFFF" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.modal-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
}

.modal-body {
    padding: 40px;
}

.modal-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-features h3,
.modal-coverages h3 {
    font-size: 1.4rem;
    color: #001632;
    margin-bottom: 20px;
    font-weight: 600;
}

.features-list,
.coverages-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.features-list li,
.coverages-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: #555;
    line-height: 1.5;
    border-bottom: 1px solid #f5f5f5;
}

.features-list li:last-child,
.coverages-list li:last-child {
    border-bottom: none;
}

.features-list li::before,
.coverages-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: #FC4303;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.modal-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    flex-wrap: wrap;
}

.modal-whatsapp-btn {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.modal-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    background: linear-gradient(135deg, #128C7E, #075E54);
}

.modal-call-btn {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(135deg, #001632, #002A5C);
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.modal-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 22, 50, 0.3);
    background: linear-gradient(135deg, #FC4303, #D63700);
}

.modal-call-btn svg {
    width: 20px;
    height: 20px;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 30px 25px 25px;
    }
    
    .modal-title {
        font-size: 1.8rem;
    }
    
    .modal-body {
        padding: 25px;
    }
    
    .modal-description {
        font-size: 1.1rem;
    }
    
    .modal-features h3,
    .modal-coverages h3 {
        font-size: 1.2rem;
    }
    
    .modal-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .modal-whatsapp-btn,
    .modal-call-btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-description {
        font-size: 1rem;
    }
    
    .modal-header {
        padding: 25px 20px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .features-list li,
    .coverages-list li {
        padding-left: 30px;
        font-size: 0.95rem;
    }
}

/* Ajustes para los botones de productos */
.product-btn {
    background: transparent;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.product-btn:hover {
    color: #FC4303;
}

/* Efecto ripple para los botones */
.product-btn {
    position: relative;
    overflow: hidden;
}

.product-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.product-btn:hover::after {
    width: 300px;
    height: 300px;
}

.product-btn:active::after {
    background: rgba(252, 67, 3, 0.3);
}