:root {
    --tech-dark: #0a0e17;
    --tech-blue: #0d47a1;
    --tech-cyan: #00e5ff;
    --bg-light: #f4f7f6;
    --card-front: #ffffff;
    --card-back: #1a237e;
    --whatsapp-green: #25d366;
}
/* --- NUEVOS ESTILOS V1.2 --- */

.navbar {
    background: rgba(10, 14, 23, 0.8) !important;
    backdrop-filter: blur(10px); /* Efecto Glassmorphism */
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}
.navbar-brand {
    padding: 0;
    margin: 0;
}

.acronix-logo-svg {
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(0, 229, 255, 0)); /* Sin brillo por defecto */
}
/* --- ESTILOS DEL LOGO PNG V1.9.1 --- */
.acronix-logo-img {
    height: 45px; /* Altura ideal para la barra de navegación */
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    object-fit: contain;
}

.navbar-brand:hover .acronix-logo-img {
    transform: scale(1.08); /* Pequeño pulso al pasar el mouse */
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.5)); /* Brillo cian */
}
/* Efecto al pasar el mouse sobre el logo o la marca */
.navbar-brand:hover .acronix-logo-svg {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.6)); /* Brillo Cian Tech */
}
.hero-section h1 {
    background: linear-gradient(90deg, #ffffff, var(--tech-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4rem;
}

/* Mejora de Cards: Efecto de iluminación */
.flip-card-inner {
    border: 1px solid rgba(255,255,255,0.1);
}

.flip-card:hover .flip-card-front {
    border: 1px solid var(--tech-cyan);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

/* Ajuste de Carrusel para móviles */
@media (max-width: 768px) {
    .slider .slide { width: 150px; }
    .hero-section h1 { font-size: 2.5rem; }
}
body { font-family: 'Roboto', sans-serif; background-color: var(--bg-light); overflow-x: hidden; margin: 0; }

/* NAVBAR */
.navbar { background-color: var(--tech-dark); border-bottom: 2px solid var(--tech-blue); }
.nav-link { display: flex; align-items: center; gap: 8px; transition: 0.3s; color: rgba(255,255,255,0.8) !important; }
.nav-link:hover { color: var(--tech-cyan) !important; }
.btn-whatsapp { background-color: var(--whatsapp-green) !important; color: white !important; border-radius: 50px; font-weight: bold; }

/* HERO SECTION 2 COLUMNAS */
.hero-section { 
    background: linear-gradient(160deg, var(--tech-dark) 0%, #101a35 40%, var(--tech-blue) 100%);
    color: white; 
    padding: 100px 0 0 0;
    position: relative;
}
.hero-svg-container img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0,229,255,0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* WAVE */
.wave-container { width: 100%; line-height: 0; margin-top: -1px; }
.wave-container svg { display: block; width: 100%; height: 80px; }
.wave-container .shape-fill { fill: var(--bg-light); }

/* FLIP CARDS */
.flip-card { background-color: transparent; height: 320px; perspective: 1000px; border: none; margin-bottom: 30px; }
.flip-card-inner { position: relative; width: 100%; height: 100%; text-align: center; transition: transform 0.8s; transform-style: preserve-3d; border-radius: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }
.flip-card-front, .flip-card-back { position: absolute; width: 100%; height: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 25px; }
.flip-card-front { background: var(--card-front); color: #333; }
.flip-card-front i { font-size: 3.5rem; color: var(--tech-blue); margin-bottom: 15px; }
.flip-card-back { background: var(--card-back); color: white; transform: rotateY(180deg); }
.flip-card-back h5 { color: var(--tech-cyan); font-weight: bold; }

/* CARRUSEL INFINITO (CORREGIDO) */
.slider-section { background: white; padding: 60px 0; border-top: 1px solid #eee; }
.slider { height: 100px; margin: auto; overflow: hidden; position: relative; width: auto; }
.slider .slide-track {
    display: flex;
    width: calc(300px * 14);
    animation: scroll 30s linear infinite;
}
.slider .slide { width: 300px; display: flex; align-items: center; justify-content: center; }
.slider img {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: 0.4s;
}
.slider img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.1); }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 7)); }
}

/* --- FOOTER V1.2 --- */
.main-footer {
    background-color: var(--tech-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
    position: relative;
}

.footer-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--tech-cyan);
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s;
}

.footer-link:hover {
    color: var(--tech-cyan);
    padding-left: 8px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    transition: 0.4s;
}

.social-icons a:hover {
    background: var(--tech-blue);
    color: var(--tech-cyan);
    box-shadow: 0 0 15px var(--tech-cyan);
    transform: translateY(-5px);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 229, 255, 0.2);
    height: 200px;
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
    margin-top: 50px;
    font-size: 0.9rem;
}

/* --- SERVICIOS V1.2.5 --- */
.services-header {
    background: linear-gradient(135deg, var(--tech-dark) 0%, var(--tech-blue) 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: white;
}

.service-feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.service-feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(13, 71, 161, 0.1);
    border-color: var(--tech-cyan);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(13, 71, 161, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--tech-blue);
    font-size: 2rem;
    transition: 0.3s;
}

.service-feature-card:hover .icon-box {
    background: var(--tech-blue);
    color: var(--tech-cyan);
    transform: rotateY(360deg);
}

.price-badge {
    background: var(--bg-light);
    color: var(--tech-blue);
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
}
/* --- MEJORA DESPLIEGUE SERVICIOS V1.2.7 --- */
.benefits-list {
    background: rgba(13, 71, 161, 0.03);
    border-radius: 12px;
    padding: 0;
    margin-top: 15px;
    overflow: hidden;
    border-left: 3px solid var(--tech-cyan);
}

.benefits-list ul {
    list-style: none;
    padding: 15px;
    margin: 0;
}

.benefits-list li {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.benefits-list li i {
    color: var(--tech-cyan);
    margin-right: 10px;
    font-size: 1rem;
}

.btn-more-info {
    transition: 0.3s;
    font-weight: bold;
    border-radius: 50px;
}

/* Rotación del icono cuando el botón está activo */
.btn-more-info[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* --- AJUSTES CARDS V1.2.8 --- */
.service-feature-card, .flip-card {
    max-width: 350px; /* Tamaño más compacto */
    margin: 0 auto;
    /* Sombra tecnológica: suave, profunda y con un toque de azul */
    box-shadow: 0 15px 35px rgba(10, 14, 23, 0.1), 0 5px 15px rgba(0, 229, 255, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-feature-card:hover, .flip-card:hover {
    /* Sombra más intensa al hacer hover */
    box-shadow: 0 20px 45px rgba(13, 71, 161, 0.2);
    transform: translateY(-10px);
}

/* Reducción de padding interno para tarjetas más pequeñas */
.service-feature-card {
    padding: 25px !important;
}

.flip-card {
    height: 300px; /* Reducción de altura en index */
}

.icon-box {
    width: 60px; /* Iconos ligeramente más pequeños */
    height: 60px;
    font-size: 1.6rem;
}

/* --- CONTACTO V1.3.2 --- */
.contact-header {
    background: linear-gradient(135deg, var(--tech-dark) 0%, var(--tech-blue) 100%);
    padding: 80px 0;
    color: white;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(10, 14, 23, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.1);
    margin-top: -50px;
}

.form-control {
    border-radius: 10px;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--tech-cyan);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
    outline: none;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--tech-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-right: 20px;
}


/* --- ESTILOS PÓLIZAS V1.4 --- */
.table-comparison {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.table-comparison thead {
    background: var(--tech-dark);
    color: white;
}

.check-icon { color: var(--tech-cyan); font-size: 1.2rem; }
.cross-icon { color: #ff5252; font-size: 1.2rem; }

/* SECCIÓN PRECIOS */
.price-card {
    border: 2px solid transparent;
    transition: 0.3s;
}

.price-card.featured {
    border-color: var(--tech-cyan);
    transform: scale(1.05);
}

.price-card .price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--tech-blue);
}

/* --- TABS INTERACTIVAS PÓLIZAS V1.5 --- */
.nav-polizas {
    background: var(--tech-dark);
    border-radius: 50px;
    padding: 5px;
    border: 1px solid var(--tech-blue);
    margin-bottom: 40px;
}

.nav-polizas .nav-link {
    border-radius: 50px !important;
    color: white !important;
    padding: 12px 30px;
    font-weight: bold;
    border: none !important;
    transition: 0.4s;
}

.nav-polizas .nav-link.active {
    background: var(--tech-cyan) !important;
    color: var(--tech-dark) !important;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.tab-pane {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.img-poliza {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-height: 300px;
    object-fit: cover;
}

/* --- MEJORAS PÓLIZAS V1.6 --- */

/* Colores Dinámicos para Cards de Inversión */
.card-basico { 
    border-bottom: 5px solid #6c757d !important; 
}
.card-basico .price-amount { color: #6c757d; }

.card-profesional { 
    border-bottom: 5px solid var(--tech-blue) !important;
    background: linear-gradient(to bottom, #ffffff, #f0f7ff);
}
.card-profesional .price-amount { color: var(--tech-blue); }

.card-enterprise { 
    border-bottom: 5px solid var(--tech-cyan) !important;
    background: linear-gradient(to bottom, #ffffff, #e6fdff);
}
.card-enterprise .price-amount { color: #00838f; }

/* Ajuste de Carrusel para contenido */
.carousel-item {
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.nav-polizas-tabs .nav-link {
    cursor: pointer;
    border: 1px solid rgba(0, 229, 255, 0.3);
    margin: 0 5px;
}
/* --- MEJORAS PÓLIZAS V1.7 --- */

/* Efecto Resalte en Hover para Cards */
.price-card {
    border: 2px solid transparent !important;
    cursor: pointer;
}
.card-basico:hover { border-color: #6c757d !important; box-shadow: 0 0 20px rgba(108, 117, 125, 0.3); }
.card-profesional:hover { border-color: var(--tech-blue) !important; box-shadow: 0 0 25px rgba(13, 71, 161, 0.4); }
.card-enterprise:hover { border-color: var(--tech-cyan) !important; box-shadow: 0 0 25px rgba(0, 229, 255, 0.4); }

/* Estilo para los beneficios desplegables */
.benefit-item {
    border: none;
    background: transparent;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.benefit-button {
    text-align: left;
    width: 100%;
    padding: 10px 0;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.benefit-desc {
    font-size: 0.85rem;
    color: #666;
    padding-bottom: 10px;
}