/* ==========================================================================
   ESTILOS PREMIUM HERO SLIDER - CINEMÁTICO RESPONSIVE
   ========================================================================== */

/* Limpieza del Header base para acoplarse sobre el Slider */
.sitio-header {
    background-color: transparent !important;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: none !important;
}
.logo strong, .logo span, .navegacion a {
    color: #FFFFFF !important;
}
.btn-contacto-nav {
    background-color: rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
}

/* 1. CONTENEDOR MAESTRO DEL SLIDER */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa exactamente el alto completo de la ventana */
    background-color: #0B0C10;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Estructura de cada capa de fondo */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* 2. TEXTOS SUPERPUESTOS */
.hero-content-wrapper {
    position: relative;
    z-index: 10; /* Por encima del fondo */
    width: 100%;
}

.hero-text-block {
    max-width: 650px;
}

.main-title-premium {
    font-size: 4.2rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.italic-title {
    font-style: italic;
    font-weight: 300;
    opacity: 0.9;
}

.sub-lead-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Botones en píldora (Pills) */
.cta-pill-group {
    display: flex;
    gap: 20px;
}

.btn-pill-solid {
    background: #E04774; /* Color acento vibrante / Rosa premium */
    color: #FFFFFF;
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(224, 71, 116, 0.3);
}

.btn-pill-solid:hover {
    background: #FFFFFF;
    color: #0B0C10;
    transform: translateY(-2px);
}

.btn-pill-outline {
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-pill-outline:hover {
    background: #FFFFFF;
    color: #0B0C10;
    transform: translateY(-2px);
}

/* 3. CONTROLES: FLECHAS (IZQUIERDA Y DERECHA) */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #FFFFFF;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #FFFFFF;
    color: #0B0C10;
}

.prev-arrow { left: 30px; }
.next-arrow { right: 30px; }

/* 4. CONTROLES: GOOGLE REVIEW BADGE (Abajo Izquierda) */
.google-reviews-badge {
    position: absolute;
    bottom: 35px;
    left: 40px;
    z-index: 20;
    background: #FFFFFF;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    max-width: 250px;
}

.google-reviews-badge .stars {
    color: #F1C40F;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.google-reviews-badge p {
    color: #2D3142;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.3;
}

.google-reviews-badge span {
    color: #777;
    font-size: 0.75rem;
    display: block;
    margin-top: 2px;
}

/* 5. CONTROLES: BARRA DE REDES SOCIALES VERTICAL (Abajo Derecha) */
.social-vertical-bar {
    position: absolute;
    bottom: 35px;
    right: 40px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.instagram:hover { background: #E1306C; }
.tik-tok:hover { background: #000000; }
.whatsapp-btn { background: #25D366; } /* Duplica la acción pero directo en barra */

/* Ocultar el botón original flotante de WhatsApp en la home para no encimar elementos */
body:has(.hero-slider-container) .btn-whatsapp {
    display: none !important;
}

/* ==========================================================================
   MÓVILES Y ADAPTACIÓN RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
    .main-title-premium { font-size: 3rem; }
    .sub-lead-text { font-size: 1.1rem; }
    .slider-arrow, .google-reviews-badge { display: none !important; }
    .social-vertical-bar { right: 20px; bottom: 20px; }
}

@media (max-width: 576px) {
    .main-title-premium { font-size: 2.3rem; }
    .cta-pill-group { flex-direction: column; gap: 15px; }
    .btn-pill-solid, .btn-pill-outline { text-align: center; width: 100%; }
}
/* ==========================================================================
   SECCIÓN NOSOTROS - ESTILO PREMIUM SAAS (Añadir al final de index.css)
   ========================================================================== */

.nosotros-preview-section {
    background-color: #0B0C10; /* Fondo ultra oscuro consistente */
    padding: 100px 0 140px 0;
    position: relative;
    overflow: hidden;
}

.container-nosotros-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

/* 1. TEXTOS CENTRALIZADOS */
.nosotros-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 5;
}

.nosotros-title {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.nosotros-subtitle {
    font-size: 1.15rem;
    color: #9499A6; /* Gris lavado premium para alta legibilidad en fondos oscuros */
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 400;
}

.nosotros-subtitle strong {
    color: #FFFFFF;
    font-weight: 600;
}

/* Botones de la sección */
.nosotros-action-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-nosotros-blue {
    background-color: #4D57FF; /* Azul eléctrico / digital vibrante */
    color: #FFFFFF;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-nosotros-blue:hover {
    background-color: #3A44E6;
    transform: translateY(-1px);
}

.btn-nosotros-dark {
    background-color: #16171A;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

.btn-nosotros-dark:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* 2. CONTENEDOR DE IMAGEN (SHOWCASE) */
.nosotros-media-showcase {
    position: relative;
    width: 100%;
    max-width: 950px; /* Ancho generoso y cinematográfico como la captura */
    margin: 0 auto;
    z-index: 5;
}

.media-card-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.media-img-fluid {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* Filtro leve para homogeneizar la imagen con la estética oscura de la web */
    filter: brightness(0.85) contrast(1.05); 
}

/* Efectos encima de la imagen */
.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 12, 16, 0) 60%, rgba(11, 12, 16, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-badge {
    background: rgba(11, 12, 16, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.badge-icon {
    color: #4D57FF;
}

/* Brillo sutil inferior idéntico a la captura */
.glow-effect-bottom {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100px;
    background: radial-gradient(circle, rgba(77, 87, 255, 0.15) 0%, rgba(77, 87, 255, 0) 70%);
    filter: blur(20px);
    z-index: -1;
    pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nosotros-title {
        font-size: 2.2rem;
    }
    .nosotros-action-pills {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .btn-nosotros-blue, .btn-nosotros-dark {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}
/* ==========================================================================
   SECCIÓN FAQs - DISEÑO MINIMALISTA DOS COLUMNAS (Añadir al final de index.css)
   ========================================================================== */

.faqs-premium-section {
    background-color: #0B0C10; /* Fondo oscuro unificado */
    padding: 60px 0 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03); /* Separador sutil */
}

/* Encabezado alineado a la izquierda según la captura */
.faqs-header {
    margin-bottom: 50px;
}

.faqs-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -1.5px;
    margin: 0;
}

/* Grid del sistema de FAQs */
.faqs-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 80px; /* Separación generosa entre columnas y filas como la referencia */
}

.faqs-column {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Espacio vertical entre cada bloque de pregunta */
}

/* Bloque individual de pregunta/respuesta */
.faq-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF; /* Contraste blanco nítido */
    line-height: 1.4;
    margin: 0;
    letter-spacing: -0.3px;
}

.faq-item p {
    font-size: 1.02rem;
    color: #9499A6; /* Gris lavado premium idéntico al de la sección nosotros */
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* ==========================================================================
   RESPONSIVE PARA FAQs
   ========================================================================== */
@media (max-width: 992px) {
    .faqs-grid-container {
        grid-template-columns: 1fr; /* Una sola columna en tabletas y móviles */
        gap: 40px;
    }
    
    .faqs-column {
        gap: 40px;
    }
    
    .faqs-main-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .faq-item h3 {
        font-size: 1.15rem;
    }
    
    .faq-item p {
        font-size: 0.96rem;
    }
}
/* ==========================================================================
   SECCIÓN DE PLANES Y PRECIOS - ESTILO SAAS DE ALTA GAMA
   ========================================================================== */

.planes-premium-section {
    background-color: #0B0C10; /* Unificado con el fondo oscuro general */
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.planes-header {
    margin-bottom: 60px;
}

.section-main-title {
    font-size: 2.8rem;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: -1px;
}

.planes-divider {
    width: 50px;
    height: 4px;
    background-color: #4D57FF; /* Azul digital */
    margin: 15px auto 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #9499A6;
}

/* Rejilla del Grid */
.planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    align-items: stretch;
}

/* Estructura Base de las Tarjetas */
.plan-card {
    background-color: #111216;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Cabeceras de Tarjeta con Mockup Visual */
.card-visual-header {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.mockup-container {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.card-visual-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

/* Colores de las cabeceras basados en tu referencia */
.header-mint { background: linear-gradient(135deg, #00A887 0%, #00C6A0 100%); }
.header-blue { background: linear-gradient(135deg, #3A62E7 0%, #537FFF 100%); }
.header-cyan { background: linear-gradient(135deg, #0099CE 0%, #00B4ED 100%); }
.header-obsidian { background: linear-gradient(135deg, #1F232E 0%, #2D3242 100%); }

/* Cuerpo de la Tarjeta */
.card-body {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title-service {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.card-desc {
    font-size: 0.92rem;
    color: #8A8F9E;
    line-height: 1.5;
    margin-bottom: 25px;
    min-height: 65px; /* Mantiene la alineación uniforme */
}

/* Lista de Características */
.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-features li {
    font-size: 0.9rem;
    color: #9499A6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.card-features li span {
    color: #00C6A0; /* Check verde/mint */
    font-weight: bold;
}

/* Botones de Acción Estilo Pill */
.btn-card-action {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 30px;
    transition: all 0.2s ease;
}

.btn-mint { background-color: #00A887; color: #FFFFFF; }
.btn-mint:hover { background-color: #00C6A0; }

.btn-cyan { background-color: #0099CE; color: #FFFFFF; }
.btn-cyan:hover { background-color: #00B4ED; }

.btn-blue-obsidian { background-color: #4D57FF; color: #FFFFFF; }
.btn-blue-obsidian:hover { background-color: #636CFF; }

/* 3. CONFIGURACIÓN TARJETA DESTACADA (SMART) */
.featured-smart {
    background-color: #EBF1FF !important; /* Fondo claro premium */
    border: none;
    border-bottom-left-radius: 60px; /* Curva asimétrica inferior según tu captura */
    box-shadow: 0 15px 35px rgba(77, 87, 255, 0.15);
}

.featured-smart .card-title-service { color: #16171A; }
.featured-smart .card-desc { color: #525660; }
.featured-smart .card-features li { color: #40444E; }
.featured-smart .card-features li span { color: #3A62E7; }

.btn-dark-featured {
    background-color: #16171A;
    color: #FFFFFF;
}
.btn-dark-featured:hover {
    background-color: #3A62E7;
}

/* Badge Superior 'Popular' */
.badge-popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #00C6A0;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 10;
    letter-spacing: 0.5px;
}

/* 4. CONFIGURACIÓN TARJETA PREMIUM (BLACK) */
.card-black {
    background-color: #0E1015;
    border: 1px solid rgba(77, 87, 255, 0.15);
}
.card-black .header-obsidian h3 { color: #00B4ED; } /* Toque de color exclusivo */

/* ==========================================================================
   RESPONSIVE PLANES
   ========================================================================== */
@media (max-width: 1200px) {
    .planes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .planes-grid {
        grid-template-columns: 1fr;
    }
    .featured-smart {
        border-bottom-left-radius: 16px; /* Simplificación suave en mobile */
    }
}
/* ==========================================================================
   SECCIÓN: TARJETAS DE PRESENTACIÓN PREMIUM
   ========================================================================== */
.business-cards-section {
    background-color: #0B0C10; /* Fondo oscuro consistente */
    padding: 100px 0;
    overflow: hidden;
}

.cards-showcase-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: #16171A; /* Contenedor oscuro */
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cards-content-left {
    flex: 1;
    max-width: 500px;
}

.section-title-white {
    font-size: 2.8rem;
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-desc-gray {
    font-size: 1.1rem;
    color: #A0A5B5;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-solid-blue {
    display: inline-block;
    background: #4D57FF;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-solid-blue:hover { background: #3840e6; }

/* Testimonio */
.social-proof-box {
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.social-proof-box p {
    font-size: 0.9rem;
    color: #8A8F9E;
    font-style: italic;
}

/* Visuales 3D */
.cards-visual-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.img-fluid-cards {
    max-width: 100%;
    height: auto;
    /* Efecto de sombra para despegar del fondo */
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

/* Responsive */
@media (max-width: 992px) {
    .cards-showcase-wrapper { flex-direction: column; text-align: center; }
    .social-proof-box { text-align: left; }
}