/* ETB Website Custom Styles - Actualizado con Paleta Exacta */

:root {
    /* Colores Corporativos */
    --etb-cyan: #0092BC;
    --etb-blue-deep: #214780;
    --etb-blue-gradient-start: #044A8B;
    --etb-blue-gradient-mid: #204780;
    
    /* Neutrales */
    --etb-gray: #515151;
    --etb-gray-25: #D3D3D3;
    --etb-gray-75: #7D7D7D;
    --etb-gray-neutral: #F8F8F9;
    
    /* Fondos y Acentos */
    --etb-white: #FFFFFF;
    --etb-cyan-bright: #00FFFF;
    --etb-dbdbdb: #DBDBDB;
    
    /* Compatibilidad con código existente */
    --etb-blue: #0092BC;
    --etb-dark: #214780;
    --etb-dark-blue: #044A8B;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Footer - Color corporativo correcto #0092BC */
.bg-etb-cyan {
    background-color: #0092BC !important;
}

footer.bg-etb-cyan {
    background-color: #0092BC !important;
}

/* FAQs Section - Contenedor principal SIN borde */
.faq-section-wrapper {
    padding: 40px 0;
    background: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section-wrapper {
        padding: 24px 0;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* ===== 1. BANNER SUPERIOR ANIMADO ===== */
.alert-banner {
    position: relative;
    overflow: hidden;
}

.alert-banner-content {
    display: flex;
    animation: scrollBanner 35s linear infinite;
}

@keyframes scrollBanner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.alert-banner-content span {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ===== 2. HERO SECTION CON CURVAS (Antiguo) ===== */
.hero-section {
    background: linear-gradient(135deg, #0066CC 0%, #00B8D4 100%);
    position: relative;
    min-height: 600px;
}

.hero-background {
    background: linear-gradient(135deg, #003D82 0%, #0066CC 50%, #00B8D4 100%);
    opacity: 0.9;
}

.hero-curve-left {
    position: absolute;
    top: -50px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.hero-curve-right {
    position: absolute;
    top: 50%;
    right: -150px;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.hero-section h1 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Curvas blancas pronunciadas en la parte inferior del hero */
.hero-bottom-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 5;
    line-height: 0;
}

.hero-bottom-curve svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ===== 2.1 NUEVO HERO SECTION CON GRADIENTE RADIAL ===== */
.hero-section-new {
    background: radial-gradient(ellipse at center, #0092BC 0%, #044A8B 50%, #214780 100%);
    position: relative;
    min-height: 600px;
    padding-top: 4rem;
    padding-bottom: 4rem;
    
    /* CORRECCIÓN: Agregar márgenes para que no llegue hasta los bordes */
    margin: 20px;
    border-radius: 32px;
    overflow: hidden;
}

/* REMOVIDO: Curvas decorativas del hero que causaban cuadros blancos visibles */
/* 
.hero-curve-diagonal-tl {
    position: absolute;
    top: 0;
    left: 0;
    width: 350px;
    height: 350px;
    z-index: 1;
}

.hero-curve-diagonal-tl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-bottom: 8px solid var(--etb-white);
    border-right: 8px solid transparent;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 100%;
    transform: rotate(0deg);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.hero-curve-diagonal-tl::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 350px;
    height: 350px;
    border: 8px solid var(--etb-white);
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-radius: 0 0 100% 0;
    transform: scaleX(-1) scaleY(-1);
}

.hero-curve-diagonal-br {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 350px;
    height: 350px;
    z-index: 1;
}

.hero-curve-diagonal-br::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-top: 8px solid var(--etb-white);
    border-left: 8px solid transparent;
    border-bottom-right-radius: 50%;
    border-top-left-radius: 100%;
    transform: rotate(0deg);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.hero-curve-diagonal-br::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 350px;
    height: 350px;
    border: 8px solid var(--etb-white);
    border-left-color: transparent;
    border-top-color: transparent;
    border-radius: 100% 0 0 0;
    transform: scaleX(-1) scaleY(-1);
}

.hero-curve-diagonal-tr {
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 350px;
    z-index: 1;
}

.hero-curve-diagonal-tr::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-bottom: 8px solid var(--etb-white);
    border-left: 8px solid transparent;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 100%;
    transform: rotate(0deg);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.hero-curve-diagonal-tr::after {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 350px;
    height: 350px;
    border: 8px solid var(--etb-white);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 0 0 0 100%;
    transform: scaleX(-1) scaleY(-1);
}

.hero-curve-diagonal-bl {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 350px;
    height: 350px;
    z-index: 1;
}

.hero-curve-diagonal-bl::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 8px solid var(--etb-white);
    border-right: 8px solid transparent;
    border-bottom-left-radius: 50%;
    border-top-right-radius: 100%;
    transform: rotate(0deg);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.hero-curve-diagonal-bl::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -8px;
    width: 350px;
    height: 350px;
    border: 8px solid var(--etb-white);
    border-right-color: transparent;
    border-top-color: transparent;
    border-radius: 0 100% 0 0;
    transform: scaleX(-1) scaleY(-1);
}
*/

.hero-section-new h1 {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-section-new p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ===== 3. CAROUSEL GENERAL STYLES ===== */
.carousel-overflow {
    overflow: hidden;
    position: relative;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #f8f9fa;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn svg {
    color: var(--etb-blue);
}

.carousel-prev-hogar,
.carousel-prev-mobile,
.carousel-prev-benefits {
    left: -24px;
}

.carousel-next-hogar,
.carousel-next-mobile,
.carousel-next-benefits {
    right: -24px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--etb-blue);
    width: 32px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: var(--etb-blue);
    opacity: 0.7;
}

/* ===== 4. CAROUSEL PLANES HOGAR - CENTER MODE ===== */

/* Sección de Planes */
.planes-section {
    padding: 5rem 0;
    background: var(--etb-gray-neutral);
}

.planes-title {
    color: var(--etb-blue-deep);
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

/* Wrapper del carousel con botones */
.planes-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Contenedor del carousel */
.planes-carousel-container {
    width: 100%;
    max-width: 1100px; /* AJUSTE: Espacio suficiente para 3 cards (centro + 2 laterales parciales) */
    overflow: hidden; /* CRÍTICO: Ocultar cards extras */
    position: relative;
    margin: 0 auto;
}

/* Track del carousel */
.carousel-track-hogar {
    display: flex;
    justify-content: flex-start; /* Alinear desde la izquierda para que translateX funcione correctamente */
    align-items: center;
    gap: 2rem; /* Espacio entre cards - VISIBLE */
    transition: transform 0.5s ease-in-out;
    padding: 3rem 0; /* Padding aumentado para sombras más grandes */
}

/* Card wrapper */
.carousel-card-hogar {
    flex-shrink: 0;
}

/* Card base - Estado lateral (pequeña) */
.plan-card-new {
    min-width: 500px;
    width: 500px;
    height: 550px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    transition: all 0.5s ease-in-out;
    
    /* Estado inicial (lateral) - Pequeña y semi-transparente */
    transform: scale(0.80);
    opacity: 0.6;
    z-index: 5;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Card central (activa) - Grande y destacada */
/* NOTA: !important aquí es necesario para sobrescribir el estado base */
.plan-card-new.active {
    transform: scale(1.0) !important;
    opacity: 1 !important;
    z-index: 10 !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25) !important;
}

/* Hover solo en card activa */
.plan-card-new.active:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25) !important;
}

/* Imagen de fondo - Ocupa toda la card */
.plan-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Overlay oscuro con gradiente */
.plan-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

/* Curva blanca decorativa en esquina superior izquierda */
.plan-card-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    border-bottom: 6px solid white;
    border-right: 6px solid white;
    border-bottom-right-radius: 100%;
    z-index: 3;
}

/* Contenido sobre la imagen */
.plan-card-content-new {
    position: relative;
    z-index: 4;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    color: white;
}

.plan-card-top {
    display: flex;
    flex-direction: column;
}

/* Badge translúcido */
.plan-badge-new {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 1.5rem;
}

.plan-intro {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.plan-card-bottom {
    display: flex;
    flex-direction: column;
}

.plan-price-section {
    margin-bottom: 1rem;
}

.plan-price-label {
    font-size: 1.25rem;
    font-weight: 400;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Precio GIGANTE */
.plan-price-big {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.plan-details-small {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.plan-highlight {
    font-size: 1rem;
    font-weight: 700;
    color: var(--etb-cyan-bright);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Botones de navegación del carousel - Nuevos estilos */
.carousel-btn {
    background: white;
    border: 2px solid var(--etb-cyan);
    color: var(--etb-cyan);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-btn:hover:not(:disabled) {
    background: var(--etb-cyan);
    color: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

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

/* Posicionamiento específico de los botones */
.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

/* Dots de navegación */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--etb-gray-25);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.dot:hover {
    background: var(--etb-gray-75);
    transform: scale(1.2);
}

.dot.active {
    background: var(--etb-blue-deep);
    width: 16px;
    height: 16px;
}

/* Iconos de Beneficios */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.beneficio-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.beneficio-icon {
    width: 48px;
    height: 48px;
    color: var(--etb-cyan);
    flex-shrink: 0;
}

.beneficio-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--etb-blue-deep);
    margin-bottom: 0.25rem;
}

.beneficio-text p {
    font-size: 0.875rem;
    color: var(--etb-gray);
    margin: 0;
}


/* ===== 5. CAROUSEL PLANES MÓVILES - EFECTO CARD CENTRAL DESTACADA ===== */
/* ============================================
   SEGUNDO CAROUSEL - "Tu conexión te acompaña"
   Center Mode con 3 cards visibles
   ============================================ */

.carousel-track-mobile {
    display: flex;
    justify-content: flex-start; /* IMPORTANTE: Alinear desde la izquierda para translateX */
    align-items: center;
    gap: 2rem; /* Espacio entre cards */
    transition: transform 0.5s ease-in-out;
    padding: 3rem 0; /* Padding para sombras */
}

/* Card wrapper */
.carousel-card-mobile {
    flex-shrink: 0;
}

/* Card base - Estado lateral (pequeña) */
.mobile-plan-card {
    min-width: 450px;
    width: 450px;
    height: 500px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    transition: all 0.5s ease-in-out;
    
    /* Estado inicial (lateral) - Pequeña y semi-transparente */
    transform: scale(0.80);
    opacity: 0.6;
    z-index: 5;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    
    /* Flexbox para layout interno */
    display: flex;
    flex-direction: column;
}

/* Card central (activa) - Grande y destacada */
.mobile-plan-card.active {
    transform: scale(1.0) !important;
    opacity: 1 !important;
    z-index: 10 !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25) !important;
}

/* Hover solo en card activa */
.mobile-plan-card.active:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25) !important;
}

/* Contenedor de imagen */
.mobile-card-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.mobile-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Contenido de la card */
.mobile-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.mobile-card-content-large {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===== 6. CAROUSEL BENEFICIOS - GRID DE 3 COLUMNAS ===== */
.carousel-track-benefits {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

/* Desktop: Mostrar 3 cards completas en grid */
@media (min-width: 1024px) {
    .carousel-track-benefits {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        transform: none !important; /* Desactivar carousel en desktop */
    }
    
    .carousel-card-benefit {
        flex: none;
        min-width: auto;
    }
    
    /* Ocultar controles de carousel en desktop para esta sección */
    .carousel-prev-benefits,
    .carousel-next-benefits {
        display: none;
    }
}

.carousel-card-benefit {
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: calc(33.333% - 1.333rem);
}

.benefit-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Colores específicos para cada card de beneficios */
.carousel-card-benefit:nth-child(1) .benefit-card {
    background: linear-gradient(135deg, #00B8D4 0%, #0891b2 100%) !important;
}

.carousel-card-benefit:nth-child(2) .benefit-card {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%) !important;
}

.carousel-card-benefit:nth-child(3) .benefit-card {
    background: linear-gradient(135deg, #00B8D4 0%, #0891b2 100%) !important;
}

/* ===== 7. ACORDEÓN FAQs ===== */
.faq-item {
    border: 2px solid #214780;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 16px rgba(33, 71, 128, 0.15);
    transform: translateY(-2px);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    cursor: pointer;
    user-select: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.active {
    max-height: 500px;
    padding-top: 0.5rem;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

/* ===== 8. RESPONSIVE DESIGN ===== */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-section h1 {
        font-size: 4rem;
    }
}

/* Desktop (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .carousel-card-hogar {
        flex: 0 0 calc(33.333% - 1.333rem);
        min-width: calc(33.333% - 1.333rem);
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    .carousel-card-hogar {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
    
    .carousel-card-mobile-small {
        flex: 0 0 calc(35% - 1rem);
        min-width: calc(35% - 1rem);
    }
    
    .carousel-card-mobile-large {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
    
    .carousel-card-benefit {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.25rem;
    }
}

/* Mobile (menos de 768px) */
@media (max-width: 767px) {
    .alert-banner-content span {
        font-size: 0.8rem;
    }
    
    .hero-section {
        min-height: 550px;
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Hero curves responsive */
    .hero-bottom-curve {
        height: 60px;
    }
    
    /* Plan cards responsive */
    .plan-card-image-section {
        height: 200px;
    }
    
    .plan-card-price-section {
        min-height: 250px;
        padding: 2rem 1.5rem;
    }
    
    .plan-card-price-section .text-7xl {
        font-size: 3rem;
    }
    
    /* Ofertas section responsive */
    .ofertas-nested-card {
        width: 180px;
        padding: 1rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    .ofertas-nested-card .text-5xl {
        font-size: 2.5rem;
    }
    
    .ofertas-black-card {
        min-height: 150px;
        padding: 1.5rem;
    }
    
    /* Mobile cards más pequeñas */
    .mobile-plan-card,
    .mobile-plan-card-large {
        transform: scale(1);
        opacity: 1;
    }
    
    .carousel-card-hogar,
    .carousel-card-mobile-small,
    .carousel-card-mobile-large,
    .carousel-card-benefit {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .carousel-track-hogar,
    .carousel-track-mobile,
    .carousel-track-benefits {
        gap: 1rem;
    }
    
    .carousel-prev-hogar,
    .carousel-prev-mobile,
    .carousel-prev-benefits {
        left: 4px;
        width: 36px;
        height: 36px;
    }
    
    .carousel-next-hogar,
    .carousel-next-mobile,
    .carousel-next-benefits {
        right: 4px;
        width: 36px;
        height: 36px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .mobile-plan-card,
    .mobile-plan-card-large {
        transform: scale(1);
        height: 450px;
    }
    
    .plan-card-image-container {
        height: 180px;
    }
    
    .mobile-card-image-container,
    .mobile-card-image-container-large {
        height: 200px;
    }
    
    /* Ajustar texto en cards */
    .plan-card-content h3,
    .mobile-card-content-large h3 {
        font-size: 1.5rem;
    }
    
    .plan-card-content .text-6xl,
    .mobile-card-content-large .text-6xl {
        font-size: 3rem;
    }
    
    /* Ajustar grid de ofertas en mobile */
    .grid.lg\\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    /* Ajustar padding de secciones */
    section.py-16 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    /* Ajustar tamaño de títulos */
    h2.text-3xl {
        font-size: 1.875rem;
    }
    
    h2.text-4xl {
        font-size: 2rem;
    }
}

/* Extra Small Mobile (menos de 480px) */
@media (max-width: 479px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section p {
        font-size: 0.95rem;
    }
    
    .hero-section .rounded-full {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .plan-card-content .text-6xl,
    .mobile-card-content-large .text-6xl {
        font-size: 2.5rem;
    }
    
    .faq-question span {
        font-size: 1rem;
    }
}

/* ===== 9. UTILIDADES ADICIONALES ===== */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--etb-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--etb-dark);
}

/* Button Animations */
.btn-hover {
    transition: all 0.3s ease;
}

.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--etb-blue), var(--etb-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading Spinner */
.spinner {
    border: 3px solid rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    border-top: 3px solid var(--etb-blue);
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

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

/* Form Focus Styles */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--etb-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* Focus Visible */
*:focus-visible {
    outline: 2px solid var(--etb-blue);
    outline-offset: 2px;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Backdrop Blur */
.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Print Styles */
@media print {
    header, footer, .no-print {
        display: none;
    }
}

/* ===== 10. AJUSTES ESPECÍFICOS PARA DISEÑO ETB ===== */

/* Sombras personalizadas */
.shadow-etb {
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.shadow-etb-lg {
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.2);
}

/* Transiciones suaves para todos los elementos interactivos */
a, button, .clickable {
    transition: all 0.3s ease;
}

/* Mejoras visuales para las cards */
.rounded-3xl {
    border-radius: 1.5rem;
}

/* Espaciado consistente */
.container {
    max-width: 1280px;
}

/* ===== 11. ANIMACIONES ADICIONALES ===== */

/* Pulse animation for CTAs */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Slide in from left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

/* Slide in from right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* ===== 12. PIXEL-PERFECT ADJUSTMENTS ===== */

/* Enhanced section padding */
section.py-16 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Price typography enhancements */
.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Card content spacing improvements */
.plan-card-content,
.mobile-card-content-large {
    padding: 2rem;
}

/* Enhanced rounded corners for all cards */
.rounded-3xl {
    border-radius: 2rem;
}

.rounded-2xl {
    border-radius: 1.5rem;
}

/* Hero section title improvements */
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 4.5rem;
    }
}

/* Hero section subtitle */
.hero-section p {
    font-size: 1.5rem;
    font-weight: 500;
}

/* Search bar enhanced styling */
.hero-section input[type="text"] {
    font-size: 1.125rem;
    padding: 0.5rem 0;
}

/* Button improvements */
.hero-section a {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hero-section a:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

/* Badge styling improvements */
.inline-block.bg-white {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===== OFERTAS Y DESCUENTOS - LAYOUT 60/40 ===== */
.ofertas-container-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .ofertas-container-new {
        grid-template-columns: 1.5fr 1fr; /* 60/40 split */
        gap: 2.5rem;
        align-items: start;
    }
}

.ofertas-main-card-wrapper {
    position: relative;
}

.ofertas-sidebar-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Card Nested Flotante */
.ofertas-nested-card {
    width: 240px;
    z-index: 20;
    animation: floatCard 3s ease-in-out infinite;
}

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

/* Cards Negras Estilo Minimalista */
.ofertas-black-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.ofertas-black-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
}

/* Legacy ofertas-container para compatibilidad */
.ofertas-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .ofertas-container {
        grid-template-columns: 1.2fr 1fr;
        gap: 2rem;
    }
}

/* Enhanced gradient backgrounds */
.bg-gradient-to-br {
    position: relative;
}

.bg-gradient-to-br::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
    border-radius: inherit;
}

/* Benefits card improvements */
.benefit-card {
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Enhanced carousel buttons */
.carousel-btn {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.carousel-btn:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* FAQ improvements - Bordes individuales en cada item */
.faq-item {
    border: 2px solid #214780;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(33, 71, 128, 0.06);
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(33, 71, 128, 0.15);
    transform: translateY(-2px);
}

/* Enhanced text contrast */
.text-white {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Card image overlay improvements */
.plan-card-image-container::after,
.mobile-card-image-container::after,
.mobile-card-image-container-large::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

/* Container max-width adjustment */
@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1400px;
    }
}

/* Spacing improvements for sections */
.max-w-6xl {
    max-width: 75rem;
}

.max-w-7xl {
    max-width: 85rem;
}

/* Hero curve enhancements */
.hero-curve-left {
    opacity: 0.8;
    filter: blur(40px);
}

.hero-curve-right {
    opacity: 0.6;
    filter: blur(60px);
}

/* Enhanced alert banner */
.alert-banner {
    background: var(--etb-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Price display improvements */
.text-4xl.font-bold,
.text-6xl.font-bold {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* eSIM badge styling */
.border-2.border-white {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

/* Service badges (HBO, MAX, DUA LIPA) improvements */
.bg-gray-900 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Grid gap improvements */
.grid.gap-8 {
    gap: 2rem;
}

@media (min-width: 1024px) {
    .grid.gap-8 {
        gap: 2.5rem;
    }
}

/* Typography hierarchy */
h2.text-3xl {
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2.text-4xl {
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Enhanced color contrast */
.text-gray-800 {
    color: #1f2937;
}

.text-gray-600 {
    color: #6b7280;
}

/* Smooth transitions for all interactive elements */
button, a, .card, .plan-card-hogar, .mobile-plan-card, .benefit-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Icon improvements */
svg {
    transition: transform 0.2s ease;
}

button:hover svg,
a:hover svg {
    transform: scale(1.1);
}

/* Enhanced focus states for accessibility */
button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--etb-cyan);
    outline-offset: 3px;
    border-radius: 0.5rem;
}


/* ===== RESPONSIVE DESIGN - HEADER Y HERO ===== */

/* Mobile First - Estilos para tablets y móviles */
@media (max-width: 768px) {
    /* Top Bar */
    .top-bar {
        font-size: 0.75rem;
    }
    
    .top-bar .flex {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .top-bar .mx-3 {
        margin: 0 0.5rem;
    }
    
    /* Main Header */
    .main-header-wrapper nav {
        display: none;
    }
    
    /* Hero Section */
    .hero-section-new {
        padding-top: 3rem;
        padding-bottom: 3rem;
        min-height: 500px;
    }
    
    .hero-section-new h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    .hero-section-new p {
        font-size: 1.25rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Curvas más pequeñas en mobile */
    .hero-curve-diagonal-tl,
    .hero-curve-diagonal-br {
        width: 200px;
        height: 200px;
    }
    
    .hero-curve-diagonal-tl::after,
    .hero-curve-diagonal-br::after {
        width: 200px;
        height: 200px;
    }
    
    /* Buscador */
    .hero-section-new .max-w-2xl {
        max-width: 100%;
    }
    
    .hero-section-new input {
        font-size: 0.875rem;
        padding: 1rem;
    }
    
    /* Botón */
    .hero-section-new a[href*="facturas"] {
        font-size: 1rem !important;
        padding: 0.875rem 1.5rem !important;
    }
    
    .hero-section-new a[href*="facturas"] svg {
        width: 1.25rem !important;
        height: 1.25rem !important;
    }
    
    /* Alert Bar */
    .alert-banner-content span {
        font-size: 0.85rem;
    }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section-new h1 {
        font-size: 3.5rem !important;
    }
    
    .hero-section-new p {
        font-size: 1.5rem !important;
    }
    
    .hero-curve-diagonal-tl,
    .hero-curve-diagonal-br {
        width: 280px;
        height: 280px;
    }
    
    .hero-curve-diagonal-tl::after,
    .hero-curve-diagonal-br::after {
        width: 280px;
        height: 280px;
    }
}

/* Desktop Large */
@media (min-width: 1280px) {
    .hero-section-new {
        min-height: 700px;
    }
    
    .hero-curve-diagonal-tl,
    .hero-curve-diagonal-br {
        width: 400px;
        height: 400px;
    }
    
    .hero-curve-diagonal-tl::after,
    .hero-curve-diagonal-br::after {
        width: 400px;
        height: 400px;
    }
}

/* ===== RESPONSIVE: CENTER MODE CAROUSEL ===== */

/* Large Tablet (menos de 1200px) */
@media (max-width: 1199px) {
    .planes-carousel-wrapper {
        gap: 1rem;
    }
    
    .planes-carousel-container {
        max-width: 900px;
    }
    
    .plan-card-new {
        min-width: 450px;
        width: 450px;
        height: 500px;
    }
}

/* Tablet (menos de 1024px) */
@media (max-width: 1023px) {
    .planes-title {
        font-size: 2.5rem;
    }
    
    .planes-carousel-container {
        max-width: 700px;
    }
    
    .plan-card-new {
        min-width: 400px;
        width: 400px;
        height: 480px;
    }
    
    .plan-price-big {
        font-size: 4rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile (menos de 768px) */
@media (max-width: 767px) {
    .planes-section {
        padding: 3rem 0;
    }
    
    .planes-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .planes-carousel-wrapper {
        gap: 0.5rem;
    }
    
    /* En mobile, cards laterales ocultas */
    .plan-card-new:not(.active) {
        display: none;
    }
    
    .plan-card-new {
        min-width: 85vw;
        width: 85vw;
        height: 500px;
    }
    
    /* Card activa en mobile siempre scale 1 */
    .plan-card-new.active {
        transform: scale(1.0);
    }
    
    .plan-card-content-new {
        padding: 2rem;
    }
    
    .plan-badge-new {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .plan-intro {
        font-size: 1rem;
    }
    
    .plan-name {
        font-size: 1.25rem;
    }
    
    .plan-price-label {
        font-size: 1rem;
    }
    
    .plan-price-big {
        font-size: 3.5rem;
    }
    
    .plan-details-small {
        font-size: 0.75rem;
    }
    
    .plan-highlight {
        font-size: 0.875rem;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .beneficio-card {
        padding: 1rem;
    }
    
    .beneficio-icon {
        width: 40px;
        height: 40px;
    }
    
    .beneficio-text h4 {
        font-size: 1rem;
    }
    
    .beneficio-text p {
        font-size: 0.75rem;
    }
}

/* Extra Small Mobile (menos de 480px) */
@media (max-width: 479px) {
    .plan-card-new {
        min-width: 90vw;
        width: 90vw;
        height: 450px;
    }
    
    .plan-price-big {
        font-size: 3rem;
    }
    
    .plan-card-curve {
        width: 150px;
        height: 150px;
        border-width: 4px;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
    }
    
    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }
}



/* ===================================================================
   6. SECCIÓN "OFERTAS Y DESCUENTOS" - GALERÍA INTERACTIVA
   =================================================================== */

.ofertas-section {
    padding: 80px 0;
    /* CORRECCIÓN: Cambiar gradiente a color sólido #0092BC (color corporativo ETB) */
    background: #0092BC;
}

.ofertas-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 60px;
}

.ofertas-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr; /* 60/40 aproximadamente */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Imagen principal */
.ofertas-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.ofertas-main:hover {
    transform: scale(1.02);
}

.ofertas-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
}

/* Thumbnails laterales - Carousel vertical con reordenamiento */
.ofertas-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ofertas-thumb {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
    border: 3px solid transparent;
}

/* Animación de entrada para thumbnails reordenados */
@keyframes slideInVertical {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 0.7;
        transform: translateY(0);
    }
}

/* Aplicar animación a thumbnails que se reordenan */
.ofertas-thumb {
    animation: slideInVertical 0.3s ease;
}

.ofertas-thumb:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.ofertas-thumb.active {
    opacity: 1;
    border-color: #FFFFFF;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
    animation: none; /* No animar el activo para mejor UX */
}

.ofertas-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* Efecto hover en imagen */
.ofertas-thumb:hover img {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
    .ofertas-gallery {
        grid-template-columns: 1fr;
    }
    
    .ofertas-thumbnails {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .ofertas-thumb img {
        height: 150px;
        min-width: 200px;
    }
}


/* ===================================================================
   7. SECCIÓN "TUS BENEFICIOS" - CAROUSEL CENTER MODE
   =================================================================== */

.beneficios-section {
    padding: 80px 0;
    background: #F5F5F5;
}

.beneficios-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #214780;
    text-align: center;
    margin-bottom: 10px;
}

.beneficios-subtitle {
    font-size: 1.1rem;
    color: #515151;
    text-align: center;
    margin-bottom: 60px;
}

/* Carousel wrapper */
.beneficios-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Carousel container */
.beneficios-carousel-container {
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

/* Carousel track */
.beneficios-carousel-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: flex-start; /* CRÍTICO para que translateX funcione */
    transition: transform 0.5s ease-in-out;
    padding: 3rem 0;
}

/* Card base (lateral) - PEQUEÑA */
.carousel-card-beneficio {
    min-width: 400px;
    width: 400px;
    height: 500px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    transition: all 0.5s ease-in-out;
    
    /* Estado lateral por defecto */
    transform: scale(0.80);
    opacity: 0.6;
    z-index: 5;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Card central (activa) - GRANDE */
.carousel-card-beneficio.active {
    transform: scale(1.0) !important;
    opacity: 1 !important;
    z-index: 10 !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25) !important;
}

/* Colores de las cards */
.beneficio-cyan {
    background: linear-gradient(135deg, #0092BC 0%, #00BCD4 100%);
}

.beneficio-purple {
    background: linear-gradient(135deg, #7B2CBF 0%, #9D4EDD 100%);
}

/* Contenido de la card */
.beneficio-content {
    padding: 40px;
    color: #FFFFFF;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.beneficio-content h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Botones de navegación */
.carousel-prev-beneficios,
.carousel-next-beneficios {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.carousel-prev-beneficios {
    left: 0;
}

.carousel-next-beneficios {
    right: 0;
}

.carousel-prev-beneficios:hover,
.carousel-next-beneficios:hover {
    background: #0092BC;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(0, 146, 188, 0.4);
}

.carousel-prev-beneficios:disabled,
.carousel-next-beneficios:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Dots */
.beneficios-dots {
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-card-beneficio {
        min-width: 300px;
        width: 300px;
        height: 400px;
    }
    
    .beneficios-carousel-container {
        max-width: 350px;
    }
    
    .beneficios-carousel-wrapper {
        padding: 0 40px;
    }
    
    .beneficio-content h3 {
        font-size: 2rem;
    }
}



/* ============================================
   PLANES HOGAR PAGE - DISEÑO 1.2
   ============================================ */

/* Container General */
.container-planes {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* CORRECCIÓN: Full width para hero y contrata-ya */
.hero-planes-hogar .container-planes,
.contrata-ya-section .container-planes {
    max-width: none; /* Eliminar límite de ancho */
    padding: 0 60px; /* Padding horizontal para evitar que el contenido toque los bordes */
}


/* ============================================
   HERO SECTION "PÁSATE A ETB"
   ============================================ */
.hero-planes-hogar {
    background: linear-gradient(135deg, var(--etb-cyan) 0%, var(--etb-blue-deep) 100%);
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%; /* Full width */
    margin: 0; /* Sin márgenes laterales */
}

.hero-planes-curve-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    border-top-right-radius: 100%;
    border: 8px solid var(--etb-white);
    border-bottom: none;
    border-left: none;
}

.hero-planes-title {
    color: var(--etb-white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-planes-subtitle {
    color: var(--etb-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.btn-ubicacion-actual {
    background: transparent;
    border: 2px solid var(--etb-white);
    color: var(--etb-white);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.btn-ubicacion-actual:hover {
    background: rgba(255, 255, 255, 0.1);
}

.icon-ubicacion {
    width: 20px;
    height: 20px;
}

.search-box-planes {
    background: var(--etb-white);
    border-radius: 40px;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    max-width: 550px;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon-search-ubicacion {
    width: 22px;
    height: 22px;
    color: var(--etb-gray);
    flex-shrink: 0;
}

.input-complemento {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1rem;
    color: var(--etb-gray);
    margin-left: 12px;
    background: transparent;
}

.input-complemento::placeholder {
    color: #999;
}

.link-cambiar-ubicacion {
    color: var(--etb-white);
    text-decoration: underline;
    font-size: 0.95rem;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.link-cambiar-ubicacion:hover {
    opacity: 0.8;
}

/* ============================================
   SECCIÓN "TU PLAN" (FLOTANTE)
   ============================================ */
.tu-plan-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding: 0 0 40px;
    width: 100%; /* Full width */
}

.tu-plan-card {
    background: var(--etb-white);
    border-radius: 50px;
    padding: 20px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.tu-plan-icon {
    width: 70px;
    height: 70px;
    background: var(--etb-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tu-plan-icon svg {
    width: 40px;
    height: 40px;
    color: var(--etb-white);
}

.tu-plan-info {
    flex: 1;
    margin-left: 20px;
    text-align: left;
}

.tu-plan-label {
    color: var(--etb-cyan);
    font-size: 0.95rem;
    margin: 0 0 4px 0;
    font-weight: 500;
}

.tu-plan-precio {
    color: var(--etb-blue-deep);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.tu-plan-precio span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--etb-gray);
}

.btn-siguiente-plan {
    background: var(--etb-cyan);
    color: var(--etb-white);
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-siguiente-plan:hover {
    background: #007a9c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 146, 188, 0.3);
}

/* ============================================
   SECCIÓN "ELIGE LA VELOCIDAD DE INTERNET"
   ============================================ */
.planes-velocidad-section {
    padding: 80px 0;
    background: #F8F9FA;
    width: 100%; /* Full width */
    margin: 0; /* Sin márgenes laterales */
}

.velocidad-header {
    text-align: center;
    margin-bottom: 50px;
}

.velocidad-icon {
    width: 50px;
    height: 50px;
    color: var(--etb-blue-deep);
    margin-bottom: 16px;
}

.section-title-planes {
    color: var(--etb-blue-deep);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.plan-card-hogar {
    background: var(--etb-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.plan-card-hogar:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.badge-popular {
    background: #214780;
    color: var(--etb-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.precio-anterior-plan {
    color: #999;
    font-size: 0.95rem;
    text-decoration: line-through;
    margin: 0 0 8px 0;
}

.precio-actual-plan {
    color: #214780;
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0 0 16px 0;
    line-height: 1;
}

.precio-actual-plan span {
    font-size: 1.3rem;
    font-weight: 400;
}

.plan-descripcion-text {
    color: var(--etb-gray);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 28px 0;
}

.btn-seleccionar-plan {
    background: transparent;
    border: 2px solid #214780;
    color: #214780;
    padding: 14px 50px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.btn-seleccionar-plan:hover {
    background: #214780;
    color: var(--etb-white);
}

.plan-nota-tarifa {
    color: #999;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   SECCIÓN "ELIGE SERVICIOS EXTRA" - CAROUSEL
   ============================================ */
.servicios-extra-section {
    padding: 80px 0;
    background: var(--etb-white);
    width: 100%; /* Full width */
    margin: 0; /* Sin márgenes laterales */
}

.servicios-header {
    text-align: center;
    margin-bottom: 50px;
}

.servicios-number {
    width: 50px;
    height: 50px;
    background: #214780;
    color: var(--etb-white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.text-opcional {
    color: var(--etb-gray);
    font-weight: 400;
}

.servicios-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-btn-prev,
.carousel-btn-next {
    background: #F0F0F0;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.carousel-btn-prev:hover,
.carousel-btn-next:hover {
    background: #E0E0E0;
}

.carousel-btn-prev svg,
.carousel-btn-next svg {
    width: 24px;
    height: 24px;
    color: var(--etb-gray);
}

.servicios-carousel-container {
    overflow: hidden;
    flex: 1;
}

.servicios-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.servicio-item-card {
    background: #F8F9FA;
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    min-width: 250px;
    flex-shrink: 0;
}

.servicio-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servicio-icon-wrapper svg {
    width: 40px;
    height: 40px;
    color: var(--etb-blue-deep);
}

.servicio-nombre {
    color: var(--etb-gray);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.servicio-precio {
    color: var(--etb-blue-deep);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.servicio-precio span {
    font-size: 0.9rem;
    font-weight: 400;
}

.servicio-cantidad-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.btn-cantidad-menos,
.btn-cantidad-mas {
    background: var(--etb-white);
    border: 2px solid #214780;
    color: #214780;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-cantidad-menos:hover,
.btn-cantidad-mas:hover {
    background: #214780;
    color: var(--etb-white);
}

.cantidad-display {
    color: var(--etb-gray);
    font-size: 1.3rem;
    font-weight: 600;
    min-width: 32px;
    text-align: center;
}

.carousel-dots-servicios {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot-servicio {
    width: 10px;
    height: 10px;
    background: #D0D0D0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-servicio.active {
    background: #214780;
    width: 28px;
    border-radius: 5px;
}

/* ============================================
   SECCIÓN "¡CONTRATA YA!"
   ============================================ */
.contrata-ya-section {
    background: #0092BC; /* CORREGIDO: Cyan corporativo */
    padding: 70px 0;
    text-align: center;
    color: var(--etb-white);
    width: 100%; /* Full width */
    margin: 0; /* Sin márgenes laterales */
}

.contrata-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contrata-subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.contrata-subtitle strong {
    font-weight: 700;
}

.contrata-features-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.feature-contrata {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon-svg {
    width: 48px;
    height: 48px;
    color: var(--etb-white);
    flex-shrink: 0;
}

.feature-text {
    text-align: left;
}

.feature-label {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.feature-value {
    font-size: 1.1rem;
    font-weight: 700;
}

/* ============================================
   SECCIÓN "¿NO ENCUENTRAS UN PLAN PARA TI?"
   ============================================ */
.no-encuentras-plan-section {
    padding: 80px 0;
    background: #F8F9FA;
    width: 100%; /* Full width */
    margin: 0; /* Sin márgenes laterales */
}

.no-encuentras-plan-section .section-title-planes {
    text-align: center;
    margin-bottom: 20px;
}

.form-recomendacion {
    max-width: 700px;
    margin: 0 auto;
    background: var(--etb-white);
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-subtitle {
    color: var(--etb-blue-deep);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
}

.form-campos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.campo-dropdown {
    position: relative;
}

.select-campo {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--etb-blue-deep);
    border-radius: 30px;
    font-size: 1rem;
    color: var(--etb-gray);
    background: var(--etb-white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23214780'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 24px;
}

.select-campo:focus {
    outline: none;
    border-color: var(--etb-cyan);
}

.btn-recomiendame {
    background: #214780;
    color: var(--etb-white);
    border: none;
    padding: 16px 60px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.btn-recomiendame:hover {
    background: #0000CC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 255, 0.3);
}

.link-asesor {
    color: var(--etb-gray);
    text-decoration: underline;
    font-size: 0.95rem;
    display: block;
    text-align: center;
}

.link-asesor:hover {
    color: var(--etb-blue-deep);
}

/* ============================================
   SECCIÓN "¿QUIERES SABER ALGO MÁS?" - FAQs
   ============================================ */
.faqs-planes-section {
    padding: 80px 0;
    background: var(--etb-white);
    width: 100%; /* Full width */
    margin: 0; /* Sin márgenes laterales */
}

.faqs-planes-section .section-title-planes {
    text-align: center;
    margin-bottom: 50px;
}

.faqs-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item-planes {
    background: var(--etb-white);
    border: 2px solid var(--etb-blue-deep);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-planes:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question-btn {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--etb-blue-deep);
    transition: background 0.3s ease;
}

.faq-question-btn:hover {
    background: rgba(33, 71, 128, 0.05);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--etb-blue-deep);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item-planes.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item-planes.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--etb-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 992px) {
    .hero-planes-title {
        font-size: 2rem;
    }
    
    .planes-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
    
    .contrata-features-grid {
        gap: 40px;
    }
}

/* ============================================
   RESPONSIVE - MÓVIL
   ============================================ */
@media (max-width: 768px) {
    .hero-planes-hogar {
        padding: 40px 0 60px;
    }
    
    .hero-planes-title {
        font-size: 1.75rem;
    }
    
    .hero-planes-curve-left {
        width: 150px;
        height: 150px;
    }
    
    .tu-plan-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        border-radius: 30px;
    }
    
    .tu-plan-info {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
    }
    
    .btn-siguiente-plan {
        margin-top: 16px;
        width: 100%;
    }
    
    .planes-velocidad-section {
        padding: 60px 0;
    }
    
    .section-title-planes {
        font-size: 1.5rem;
    }
    
    .precio-actual-plan {
        font-size: 2.8rem;
    }
    
    .servicios-carousel-wrapper {
        gap: 12px;
    }
    
    .carousel-btn-prev,
    .carousel-btn-next {
        width: 40px;
        height: 40px;
    }
    
    .servicio-item-card {
        min-width: 220px;
    }
    
    .contrata-title {
        font-size: 1.8rem;
    }
    
    .contrata-subtitle {
        font-size: 1rem;
    }
    
    .contrata-features-grid {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .feature-contrata {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-text {
        text-align: center;
    }
    
    .form-recomendacion {
        padding: 30px 20px;
    }
    
    .planes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .search-box-planes {
        padding: 12px 20px;
    }
    
    .input-complemento {
        font-size: 0.9rem;
    }
    
    .tu-plan-precio {
        font-size: 1.6rem;
    }
}

/* ============================================
   PLANES MÓVIL - TABS Y CONTENIDO
   ============================================ */

/* Hero con tabs */
.hero-planes-movil {
    background: linear-gradient(135deg, var(--etb-cyan) 0%, var(--etb-blue-deep) 100%);
    padding: 40px 0 20px;
    text-align: center;
}

.tabs-container-movil {
    display: inline-flex;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 6px;
    gap: 4px;
}

.tab-movil {
    padding: 12px 40px;
    border: none;
    border-radius: 50px;
    background: transparent;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-movil.active {
    background: white;
    color: var(--etb-blue-deep);
}

/* Contenido de tabs */
.tab-content-movil {
    display: none;
}

.tab-content-movil.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Título section */
.titulo-section-movil {
    padding: 60px 0 40px;
    text-align: center;
}

.titulo-planes-movil {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--etb-blue-deep);
    margin-bottom: 12px;
}

.subtitulo-planes-movil {
    font-size: 1.2rem;
    color: #666;
}

/* Grid de planes móvil */
.planes-movil-section {
    padding: 40px 0;
    background: #F8F9FA;
}

.planes-movil-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-movil-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.plan-movil-card.destacado {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 146, 188, 0.2);
}

.plan-movil-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.badge-descuento {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF6B6B;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-movil-nombre {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--etb-blue-deep);
    margin-bottom: 20px;
}

.plan-movil-precio {
    margin-bottom: 25px;
}

.precio-anterior {
    display: block;
    font-size: 0.95rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.precio-actual {
    font-size: 3rem;
    font-weight: 700;
    color: var(--etb-blue-deep);
}

.precio-periodo {
    font-size: 1.2rem;
    color: #666;
}

.plan-movil-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.plan-movil-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #555;
}

.plan-movil-features svg {
    width: 20px;
    height: 20px;
    color: var(--etb-cyan);
    flex-shrink: 0;
}

.btn-seleccionar-movil {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid var(--etb-blue-deep);
    color: var(--etb-blue-deep);
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-seleccionar-movil:hover {
    background: var(--etb-blue-deep);
    color: white;
}

/* Servicios extra móvil */
.servicios-extra-movil-section {
    padding: 80px 0;
    background: white;
}

.titulo-servicios-extra {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--etb-blue-deep);
    margin-bottom: 50px;
}

.servicios-extra-carousel-movil {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-arrow-movil {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--etb-cyan);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow-movil.left {
    left: 0;
}

.carousel-arrow-movil.right {
    right: 0;
}

.carousel-arrow-movil svg {
    width: 24px;
    height: 24px;
    color: white;
}

.carousel-arrow-movil:hover {
    background: var(--etb-blue-deep);
    transform: translateY(-50%) scale(1.1);
}

.servicios-extra-track-movil {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    overflow: hidden;
}

.servicio-extra-card-movil {
    background: #F8F9FA;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
}

.servicio-icon {
    width: 60px;
    height: 60px;
    background: var(--etb-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.servicio-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.servicio-extra-card-movil h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--etb-blue-deep);
    margin-bottom: 10px;
}

.servicio-precio {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--etb-blue-deep);
    margin-bottom: 15px;
}

.servicio-precio span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
}

.servicio-contador {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.btn-menos,
.btn-mas {
    width: 36px;
    height: 36px;
    background: white;
    border: 2px solid var(--etb-blue-deep);
    color: var(--etb-blue-deep);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-menos:hover,
.btn-mas:hover {
    background: var(--etb-blue-deep);
    color: white;
}

.contador-valor {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--etb-blue-deep);
    min-width: 30px;
    text-align: center;
}

.carousel-dots-movil {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot-movil {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-movil.active {
    background: var(--etb-cyan);
    width: 28px;
    border-radius: 6px;
}

/* FAQ Móvil */
.faq-movil-section {
    padding: 80px 0;
    background: #F8F9FA;
}

.faq-title-movil {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--etb-blue-deep);
    margin-bottom: 40px;
}

.faq-items-movil {
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-item-movil {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question-movil {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--etb-blue-deep);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question-movil:hover {
    background: #F8F9FA;
}

.faq-icon-movil {
    width: 24px;
    height: 24px;
    color: var(--etb-cyan);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item-movil.active .faq-icon-movil {
    transform: rotate(180deg);
}

.faq-answer-movil {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-item-movil.active .faq-answer-movil {
    max-height: 200px;
    padding: 0 25px 20px;
}

.faq-answer-movil p {
    color: #666;
    line-height: 1.6;
}

.faq-contacto-movil {
    text-align: center;
    margin-top: 40px;
}

.faq-contacto-movil p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
}

.btn-chat-luz {
    display: inline-block;
    padding: 12px 30px;
    background: var(--etb-cyan);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-chat-luz:hover {
    background: var(--etb-blue-deep);
    transform: translateY(-2px);
}

/* PREPAGO ESPECÍFICO */
.prepago-section {
    padding: 60px 0;
    background: white;
}

.prepago-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--etb-blue-deep);
    margin-bottom: 50px;
}

.prepago-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-arrow-prepago {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--etb-cyan);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow-prepago.left {
    left: 0;
}

.carousel-arrow-prepago.right {
    right: 0;
}

.carousel-arrow-prepago svg {
    width: 24px;
    height: 24px;
    color: white;
}

.prepago-cards-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.prepago-cards-track::-webkit-scrollbar {
    display: none;
}

.prepago-card {
    flex: 0 0 350px;
    background: linear-gradient(135deg, var(--etb-cyan) 0%, var(--etb-blue-deep) 100%);
    border-radius: 20px;
    padding: 30px 25px;
    color: white;
    position: relative;
}

.prepago-badge {
    background: #FF6B6B;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.prepago-nombre {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.prepago-precio {
    margin-bottom: 25px;
}

.precio-principal {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 10px 0;
}

.precio-valor {
    font-size: 3rem;
    font-weight: 700;
}

.precio-detalle {
    font-size: 0.9rem;
    opacity: 0.9;
}

.prepago-features {
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.prepago-apps {
    display: flex;
    gap: 8px;
    margin: 20px 0;
}

.app-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.btn-ir-pagar {
    width: 100%;
    padding: 15px;
    background: white;
    color: var(--etb-blue-deep);
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-ir-pagar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.tarifa-plena {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 12px;
    text-align: center;
}

.prepago-descripcion {
    margin: 20px 0;
    font-size: 1.1rem;
}

/* Recarga section */
.recarga-section {
    padding: 60px 0;
    background: #F8F9FA;
}

.recarga-box {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
}

.recarga-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--etb-blue-deep);
    margin-bottom: 30px;
}

.recarga-form {
    margin-bottom: 20px;
}

.input-recarga {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    margin-bottom: 15px;
}

.recarga-info {
    background: #E3F2FD;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: var(--etb-blue-deep);
    font-weight: 600;
}

.recarga-nota,
.recarga-cobertura {
    font-size: 0.9rem;
    color: #666;
    margin-top: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .tabs-container-movil {
        width: 100%;
        max-width: 350px;
    }
    
    .tab-movil {
        flex: 1;
        padding: 10px 20px;
    }
    
    .planes-movil-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .plan-movil-card.destacado {
        transform: scale(1);
    }
    
    .servicios-extra-track-movil {
        grid-template-columns: 1fr;
    }
    
    .servicios-extra-carousel-movil,
    .prepago-carousel-container {
        padding: 0 20px;
    }
    
    .carousel-arrow-movil,
    .carousel-arrow-prepago {
        width: 35px;
        height: 35px;
    }
    
    .prepago-card {
        flex: 0 0 280px;
    }
}
