/* ==========================================
   1. VARIABLES GLOBALES DE COLOR - TEMA NEON
   ========================================== */

:root {
    --bg-color: #090909;
    --bg-dark: #121212;
    --surface-color: #171310;
    --surface-border: rgba(217, 120, 46, 0.22);
    --primary: #d9782e;
    --primary-strong: #e38d45;
    --primary-soft: #f0b77c;
    --primary-deep: #a95c22;
    --copper-dark: #6f3e1d;
    --dark-1: #000000;
    --dark-2: #121212;
    --dark-3: #1b1714;
    --text-main: #f5efe9;
    --text-muted: #d8c6b2;
    --primary-neon: #d9782e;
    --accent-neon: #b65b1b;
    --neon-purple: #7a3d1a;
    --radius: 14px;
    --max-width: 1180px;
    --font-body: 'Montserrat', 'Segoe UI', sans-serif;
    --font-display: 'Montserrat', sans-serif;
    --shadow-soft: 0 14px 36px rgba(0, 0, 0, 0.22);
    --shadow-strong: 0 18px 40px rgba(0, 0, 0, 0.28);
    --glow-copper: 0 0 12px rgba(217, 120, 46, 0.12);
    --glow-magenta: 0 0 14px rgba(181, 91, 27, 0.16);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    letter-spacing: 0.02em;
}

html {
    scroll-behavior: smooth;
}


/* Reseteo básico */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background: radial-gradient(circle at top, rgba(217, 120, 46, 0.08), transparent 28%), #050505;
    color: var(--text-main);
    line-height: 1.7;
    letter-spacing: 0.01em;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 0.8rem;
}


/* ==========================================
   2. ENCABEZADO Y NAVEGACIÓN
   ========================================== */

.header {
    background: rgba(10, 10, 10, 0.94);
    border-bottom: 1px solid rgba(217, 120, 46, 0.18);
    position: sticky;
    top: 0;
    z-index: 200;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 78px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-weight: 700;
    color: rgba(245, 239, 233, 0.82);
    transition: color 0.25s ease, transform 0.2s ease;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-strong), var(--primary));
    color: #140d09;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    box-shadow: 0 12px 24px rgba(217, 120, 46, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(217, 120, 46, 0.22);
    filter: brightness(1.04);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.25s ease;
}

.btn-secondary:hover {
    border-color: rgba(255, 122, 0, 0.7);
    color: var(--primary-soft);
}

.desktop-btn {
    display: block;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    text-shadow: 0 0 14px rgba(255, 122, 0, 0.7);
    transform: scale(1.1);
}

/* ==========================================
   3. CARRUSEL DE BANNERS
   ========================================== */

.banner-slider {
    width: 100%;
    background: #000;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 122, 0, 0.35);
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 620px;
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    animation: fade 0.6s ease-in-out;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.5) saturate(0.9);
}

.slider-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2));
    z-index: 2;
}

.hero-wrap {
    width: 100%;
}

.hero-copy {
    max-width: 620px;
    padding: 2rem 0;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--primary-soft);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.72rem;
    font-weight: 700;
}

.hero-copy h1 {
    font-size: clamp(2.3rem, 5vw, 4.5rem);
    line-height: 0.98;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.hero-copy h1 span {
    color: var(--primary-strong);
}

.hero-copy p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.06rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@keyframes fade {
    from {
        opacity: 0.3;
    }
    to {
        opacity: 1;
    }
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--primary);
    border: 1px solid rgba(255, 122, 0, 0.8);
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.25s ease;
    z-index: 10;
    box-shadow: 0 0 14px rgba(255, 122, 0, 0.18);
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.dots-container {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 122, 0, 0.2);
    border: 2px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 0 8px rgba(255, 122, 0, 0.18);
}

.dot.active,
.dot:hover {
    background-color: var(--primary);
    transform: scale(1.4);
    box-shadow: 0 0 14px rgba(255, 122, 0, 0.7);
}


/* ==========================================
   4. SECCIÓN DE SERVICIOS / CARACTERÍSTICAS
   ========================================== */

.features {
    padding: 5rem 0 4rem;
}

.section-title {
    text-align: center;
    font-size: clamp(2.2rem, 3vw, 3rem);
    margin-bottom: 2.5rem;
    color: var(--primary-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    line-height: 1.1;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(217, 120, 46, 0.04));
    padding: 2.3rem 1.8rem;
    border-radius: var(--radius);
    border: 1px solid rgba(217, 120, 46, 0.18);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #ffca7a);
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 120, 46, 0.42);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.btn-card {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 122, 0, 0.15);
    border: 1px solid rgba(255, 122, 0, 0.6);
    color: var(--primary-soft);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-card:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}


/* ==========================================
   5. FORMULARIO DE CONTACTO
   ========================================== */

.contact {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(217, 120, 46, 0.03), rgba(0, 0, 0, 0.4));
    border-top: 1px solid rgba(217, 120, 46, 0.16);
    border-bottom: 1px solid rgba(217, 120, 46, 0.16);
    box-shadow: inset 0 0 18px rgba(217, 120, 46, 0.02);
}

.form {
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-soft);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.85rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 122, 0, 0.5);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}


/* ==========================================
   5.5. SECCIÓN SOBRE NOSOTROS
   ========================================== */

.about {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(217, 120, 46, 0.06), rgba(0, 0, 0, 0));
    border-bottom: 1px solid rgba(217, 120, 46, 0.18);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.6rem;
    color: var(--primary-soft);
    margin-bottom: 1.25rem;
    text-align: center;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

.about-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-list li {
    color: var(--primary-neon);
    font-weight: 500;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(217, 120, 46, 0.35);
}


/* ==========================================
   5.7. SECCIÓN DE PLANES
   ========================================== */

.plans {
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(217, 120, 46, 0.04), rgba(0, 0, 0, 0));
    border-top: 1px solid rgba(217, 120, 46, 0.18);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.plan-card {
    background: linear-gradient(180deg, rgba(255, 122, 0, 0.05), rgba(0, 0, 0, 0.3));
    padding: 1.8rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 122, 0, 0.4);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.plan-card.basic {
    border-color: var(--primary-neon);
}

.plan-card.popular {
    border-color: rgba(255, 160, 70, 0.9);
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(255, 122, 0, 0.16);
}

.plan-card.premium {
    border-color: var(--neon-purple);
}

.plan-card:hover {
    border-color: rgba(255, 122, 0, 0.85);
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(255, 122, 0, 0.12);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-strong), var(--primary));
    color: #150d08;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    font-size: 0.53rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: var(--shadow-soft);
}

.plan-name {
    font-size: 1.2rem;
    color: var(--primary-neon);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: var(--glow-cyan);
}

.plan-price {
    margin-bottom: 2rem;
}

.plan-price .price {
    font-size: 2rem;
    color: var(--accent-neon);
    font-weight: 700;
    text-shadow: var(--glow-magenta);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--surface-border);
    color: var(--text-muted);
}

.plan-features li:last-child {
    border-bottom: none;
}

.btn-plan {
    background: linear-gradient(135deg, var(--primary-neon), var(--accent-neon));
    color: #000000;
    padding: 0.8rem 2rem;
    border-radius: var(--radius);
    font-weight: 700;
    border: 2px solid var(--primary-neon);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: var(--glow-cyan);
}

.btn-plan:hover {
    background: linear-gradient(135deg, var(--accent-neon), var(--neon-purple));
    border-color: var(--accent-neon);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--glow-magenta), 0 0 25px rgba(181, 91, 27, 0.5);
}


/* Plans Tabs */

.plans-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 1.8rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(217, 120, 46, 0.3);
    color: var(--text-muted);
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.tab-btn:hover {
    border-color: rgba(217, 120, 46, 0.6);
    color: var(--text-main);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-strong), var(--primary));
    color: #140d09;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(217, 120, 46, 0.18);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.locations {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(181, 91, 27, 0.06) 0%, rgba(217, 120, 46, 0.05) 100%);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.location-card {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.08) 0%, rgba(0, 0, 0, 0.2) 100%);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    border: 2px solid rgba(255, 122, 0, 0.8);
    transition: all 0.4s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-card:last-child {
    justify-self: center;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}

.location-card:hover {
    border-color: var(--accent-neon);
    box-shadow: var(--glow-magenta), 0 0 30px rgba(181, 91, 27, 0.3);
    transform: translateY(-8px) scale(1.02);
}

.location-card h3 {
    font-size: 1.2rem;
    color: var(--primary-neon);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-neon);
    padding-bottom: 1rem;
    text-shadow: 0 0 10px rgba(217, 120, 46, 0.3);
}

.location-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.location-card strong {
    color: var(--accent-neon);
    text-shadow: 0 0 8px rgba(181, 91, 27, 0.3);
}

.btn-map {
    background: linear-gradient(135deg, var(--primary-neon), var(--neon-purple));
    color: #000000;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius);
    border: 2px solid var(--primary-neon);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
    box-shadow: var(--glow-cyan);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-map:hover {
    background: linear-gradient(135deg, var(--accent-neon), var(--primary-neon));
    border-color: var(--accent-neon);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--glow-magenta), 0 0 20px rgba(217, 120, 46, 0.4);
}


/* ==========================================
   5.9. SECCIÓN DE CONTACTO MEJORADA
   ========================================== */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form h3 {
    font-size: 1.3rem;
    color: var(--primary-neon);
    margin-bottom: 2rem;
    text-shadow: var(--glow-cyan);
}

.contact-info {
    background: linear-gradient(135deg, rgba(217, 120, 46, 0.08) 0%, rgba(181, 91, 27, 0.1) 100%);
    padding: 2rem;
    border-radius: var(--radius);
    border: 2px solid var(--primary-neon);
    box-shadow: var(--glow-cyan);
}

.contact-info h3 {
    font-size: 1.3rem;
    color: var(--primary-neon);
    margin-bottom: 2rem;
    text-shadow: var(--glow-cyan);
}

.info-item {
    margin-bottom: 1.8rem;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary-neon);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(217, 120, 46, 0.2);
}

.info-icon7 {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(217, 120, 46, 0.2));
}

.info-icon5 {
    width: 17px;
    height: 17px;
    object-fit: contain;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(217, 120, 46, 0.2));
}

.info-icon3 {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(217, 120, 46, 0.2));
}

.info-icon2 {
    width: 35px;
    height: 35px;
    object-fit: contain;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(217, 120, 46, 0.2));
}

.info-icon1 {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(217, 120, 46, 0.2));
}

.info-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(217, 120, 46, 0.2));
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--surface-border);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-neon), var(--accent-neon));
    border-radius: 50%;
    color: #000000;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-neon);
    box-shadow: var(--glow-cyan);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--accent-neon), var(--neon-purple));
    border-color: var(--accent-neon);
    transform: translateY(-5px) scale(1.2);
    box-shadow: var(--glow-magenta), 0 0 20px rgba(181, 91, 27, 0.5);
}


/* ==========================================
   6. PIE DE PÁGINA (FOOTER)
   ========================================== */

.footer {
    background: linear-gradient(180deg, rgba(217, 120, 46, 0.04), rgba(0, 0, 0, 0.2));
    border-top: 1px solid rgba(217, 120, 46, 0.2);
    padding: 4rem 0 2rem;
    box-shadow: inset 0 0 16px rgba(217, 120, 46, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--primary-neon);
}

.footer-section h3 {
    font-size: 1.1rem;
    color: var(--primary-neon);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: var(--glow-cyan);
    border-bottom: 2px solid var(--primary-neon);
    padding-bottom: 0.8rem;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul a {
    color: var(--text-muted);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul a:hover {
    color: var(--primary-neon);
    text-shadow: var(--glow-cyan);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}


/* ==========================================
   7. ADAPTACIÓN PARA MÓVILES
   ========================================== */

@media (max-width: 980px) {
    .menu-toggle {
        display: block;
    }
    .desktop-btn {
        display: none;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--bg-dark), rgba(217, 120, 46, 0.05));
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        border-bottom: 2px solid var(--primary-neon);
        box-shadow: var(--glow-cyan);
    }
    .nav-links.active {
        display: flex;
    }
    .prev-btn,
    .next-btn {
        font-size: 1rem;
        padding: 0.5rem 0.7rem;
    }
    .dot {
        width: 9px;
        height: 9px;
    }
    /* Responsive About */
    .about-list {
        grid-template-columns: 1fr;
    }
    /* Responsive Plans */
    .plans-grid {
        gap: 1.5rem;
    }
    .plan-card.popular {
        transform: scale(1);
    }
    /* Responsive Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .form {
        max-width: 100%;
    }
    /* Responsive Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .nav-links:not(.active) {
        display: none !important;
    }

    .nav-links.active {
        display: flex !important;
    }
}


/* ==========================================
   8. ANIMACIONES Y EFECTOS NEON
   ========================================== */

@keyframes neon-glow {
    0% {
        text-shadow: 0 0 10px rgba(217, 120, 46, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(217, 120, 46, 0.8), 0 0 30px rgba(217, 120, 46, 0.6);
    }
    100% {
        text-shadow: 0 0 10px rgba(217, 120, 46, 0.5);
    }
}

@keyframes pulse-border {
    0%,
    100% {
        border-color: var(--primary-neon);
        box-shadow: 0 0 10px rgba(217, 120, 46, 0.3);
    }
    50% {
        border-color: var(--accent-neon);
        box-shadow: 0 0 20px rgba(181, 91, 27, 0.4);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}


/* ==========================================
   9. SECCIONES DE SERVICIOS
   ========================================== */

.hero-service {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(180deg, #0d0d0d, #000);
    border-bottom: 1px solid rgba(255, 122, 0, 0.35);
}

.hero-service-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-service-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-service-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-service-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-card {
    background: rgba(255, 122, 0, 0.04);
    border: 1px solid rgba(255, 122, 0, 0.3);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.25s ease;
}

.feature-card:hover {
    border-color: rgba(255, 122, 0, 0.8);
    background: rgba(255, 122, 0, 0.08);
}

.feature-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}


/* Info Section */

.info-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), #000);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 122, 0, 0.04));
    padding: 2rem;
    border: 1px solid rgba(255, 122, 0, 0.3);
    border-radius: var(--radius);
    transition: all 0.25s ease;
}

.info-card:hover {
    border-color: rgba(255, 122, 0, 0.7);
    transform: translateY(-4px);
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.info-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}


/* Tarifario y Tablas */

.tariff-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(217, 120, 46, 0.04), rgba(0, 0, 0, 0));
    border-top: 1px solid rgba(217, 120, 46, 0.16);
    border-bottom: 1px solid rgba(217, 120, 46, 0.16);
}

.tariff-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
}

.tariff-table-wrap {
    overflow-x: auto;
    margin-bottom: 3rem;
    border-radius: var(--radius);
    border: 1px solid rgba(217, 120, 46, 0.2);
    background: rgba(255, 255, 255, 0.01);
}

.tariff-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.tariff-table thead {
    background: linear-gradient(180deg, rgba(217, 120, 46, 0.12), rgba(217, 120, 46, 0.05));
    border-bottom: 2px solid rgba(217, 120, 46, 0.2);
}

.tariff-table th {
    padding: 1.2rem;
    text-align: center;
    font-weight: 700;
    color: var(--primary-soft);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

.tariff-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(217, 120, 46, 0.08);
    text-align: center;
    color: var(--text-muted);
}

.tariff-table tbody tr:hover {
    background: rgba(217, 120, 46, 0.04);
}

.tariff-table .speed-cell {
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
    background: rgba(217, 120, 46, 0.03);
}

.tariff-table .highlighted {
    font-weight: 700;
    color: var(--primary-soft);
    background: rgba(217, 120, 46, 0.08);
}

.tariff-conditions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.condition-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(217, 120, 46, 0.04));
    border: 1px solid rgba(217, 120, 46, 0.18);
    padding: 1.8rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.condition-card:hover {
    border-color: rgba(217, 120, 46, 0.42);
    transform: translateY(-4px);
}

.condition-card h4 {
    font-size: 1.1rem;
    color: var(--primary-soft);
    margin-bottom: 1rem;
    font-weight: 700;
}

.condition-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.condition-card li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 0;
    line-height: 1.5;
}


/* Channels Section */

.channels-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #000, rgba(255, 122, 0, 0.02));
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.channel-category {
    background: rgba(255, 122, 0, 0.05);
    border: 1px solid rgba(255, 122, 0, 0.3);
    padding: 1.5rem;
    border-radius: var(--radius);
    transition: all 0.25s ease;
}

.channel-category:hover {
    border-color: var(--primary);
    background: rgba(255, 122, 0, 0.1);
}

.channel-category h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.channel-category p {
    color: var(--text-muted);
    font-size: 0.9rem;
}


/* Tariffs Section */

.tariffs-section {
    padding: 4rem 0;
}

.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tariff-item {
    background: linear-gradient(180deg, rgba(255, 122, 0, 0.08), rgba(0, 0, 0, 0.2));
    border: 1px solid rgba(255, 122, 0, 0.4);
    padding: 1.8rem;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.25s ease;
}

.tariff-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(255, 122, 0, 0.1);
}

.tariff-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.tariff-item .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}


/* CTA Final */

.cta-final {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(0, 0, 0, 0.4));
    border-top: 1px solid rgba(255, 122, 0, 0.4);
    border-bottom: 1px solid rgba(255, 122, 0, 0.4);
    text-align: center;
}

.cta-final h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.cta-final p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* Responsive Service Pages */

@media (max-width: 768px) {
    .hero-service-wrap {
        grid-template-columns: 1fr;
    }
    .hero-service-features {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .feature-card {
        flex: 1;
        min-width: 150px;
    }
    .channels-grid,
    .tariffs-grid {
        grid-template-columns: 1fr;
    }
}

.badge {
    animation: pulse-border 2s ease-in-out infinite;
}

.section-title {
    animation: neon-glow 3s ease-in-out infinite;
}

.btn-primary:hover,
.btn-plan:hover,
.btn-map:hover {
    animation: float 0.6s ease-in-out;
}

/* Ajustes finales para pantallas pequeñas */
@media (max-width: 600px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .navbar {
        min-height: 68px;
    }

    .logo-img {
        height: 44px;
    }

    .nav-links {
        top: 68px;
        padding: 1.25rem 1rem;
        gap: 1.1rem;
    }

    .banner-slider,
    .slider-container {
        height: 430px;
    }

    .slide img {
        height: 430px;
    }

    .hero-service,
    .info-section,
    .tariff-section,
    .channels-section,
    .tariffs-section,
    .about,
    .plans {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-service-wrap,
    .contact-wrapper,
    .about-list,
    .info-grid,
    .tariff-conditions,
    .channels-grid,
    .tariffs-grid,
    .plans-grid,
    .footer-content {
        grid-template-columns: minmax(0, 1fr);
    }

    .section-title {
        font-size: 1.55rem;
        line-height: 1.25;
    }

    .hero-service-content h1,
    .cta-final h2 {
        overflow-wrap: anywhere;
    }

    .btn-primary,
    .btn-secondary,
    .btn-store,
    .btn-download-main,
    .btn-map {
        max-width: 100%;
    }

    .download-btns-center,
    .app-download-btns {
        align-items: stretch;
        flex-direction: column;
    }

    .download-btns-center > *,
    .app-download-btns > * {
        width: 100%;
        justify-content: center;
    }

    .form,
    .contact-info,
    .location-card,
    .info-card,
    .condition-card,
    .channel-category,
    .tariff-item,
    .plan-card {
        min-width: 0;
    }
}


/* ==========================================
   APP LINK EN PLANES
   ========================================== */

.plan-app-link {
    color: var(--primary-soft);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.plan-app-link:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(217, 120, 46, 0.7);
}


/* ==========================================
   APP PROMO BANNER (en telefonia.html)
   ========================================== */

.app-promo-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(217, 120, 46, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
}

.app-promo-inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: linear-gradient(135deg, rgba(217, 120, 46, 0.09), rgba(181, 91, 27, 0.04));
    border: 1px solid rgba(217, 120, 46, 0.28);
    border-radius: 20px;
    padding: 2.5rem;
    flex-wrap: wrap;
}

.app-promo-icon {
    font-size: 4rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 16px rgba(217, 120, 46, 0.5));
    animation: float 3s ease-in-out infinite;
}

.app-promo-text {
    flex: 1;
    min-width: 240px;
}

.app-promo-text h2 {
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
    color: var(--text-main);
}

.app-promo-text p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.app-promo-text strong {
    color: var(--primary-soft);
}

.app-promo-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.app-benefit-chip {
    background: rgba(217, 120, 46, 0.1);
    border: 1px solid rgba(217, 120, 46, 0.22);
    color: var(--primary-soft);
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
}

.app-promo-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .app-promo-inner {
        flex-direction: column;
        text-align: center;
    }
    .app-promo-benefits {
        justify-content: center;
    }
}


/* ==========================================
   NETFLIX-STYLE PLAN CARDS (COTEL COPPER/ORANGE THEME)
   ========================================== */

.plans-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    margin-top: -0.5rem;
}

.abonados-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.abonados-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.abonado-card {
    background: #0d0c0b;
    border: 1px solid rgba(217, 120, 46, 0.22);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.abonado-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 120, 46, 0.6);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 30px rgba(217, 120, 46, 0.18);
}


/* Featured card (Trío / Más Completo) */

.abonado-card.abonado-featured {
    border: 2px solid #d9782e;
    background: #110e0c;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(217, 120, 46, 0.22);
}


/* Top ribbon for featured card */

.abonado-ribbon {
    background: linear-gradient(90deg, #b55b1b, #d9782e, #b55b1b);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    text-align: center;
}


/* Card Header Box (Netflix gradient style) */

.abonado-top-box {
    background: linear-gradient(140deg, #1e130c 0%, #361d10 50%, #542912 100%);
    border: 1px solid rgba(217, 120, 46, 0.25);
    border-radius: 14px;
    margin: 0.85rem;
    padding: 1.25rem 1.15rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 92px;
}

.abonado-top-box.featured-box {
    background: linear-gradient(140deg, #4a1c09 0%, #87350f 45%, #c75e1f 100%);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.abonado-top-content {
    flex: 1;
}

.abonado-top-content .abonado-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
    line-height: 1.25;
}

.abonado-plan-tag {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
}

.abonado-top-icons {
    display: flex;
    gap: 0.35rem;
    align-items: center;
}

.abonado-top-icons .info-icon1 {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.featured-check {
    position: absolute;
    bottom: 0.65rem;
    right: 0.65rem;
    background: #ffffff;
    color: #87350f;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 900;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}


/* Feature comparison rows */

.abonado-rows {
    padding: 0.4rem 1.25rem 0.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.abonado-row {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.abonado-row:last-child {
    border-bottom: none;
}

.row-label {
    font-size: 0.74rem;
    color: #9e958d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.row-value {
    font-size: 0.92rem;
    color: #f5efe9;
    font-weight: 600;
    line-height: 1.35;
}

.row-value.price-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ff9d42;
}

.row-value.price-val span {
    font-size: 0.8rem;
    color: #9e958d;
    font-weight: 500;
}

.row-value.highlight-app {
    color: #7ef5b8;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

a.row-value.highlight-app:hover {
    color: #a3ffcf;
    text-decoration: underline;
    opacity: 0.9;
}


/* Card CTA button */

.abonado-card-cta {
    padding: 0.6rem 1.25rem 1.35rem;
    margin-top: auto;
}

.btn-abonado-netflix {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.25s ease;
    background: rgba(217, 120, 46, 0.12);
    color: #ff9d42;
    border: 1px solid rgba(217, 120, 46, 0.35);
}

.btn-abonado-netflix:hover {
    background: #d9782e;
    color: #ffffff;
    border-color: #d9782e;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(217, 120, 46, 0.35);
}

.btn-netflix-primary {
    background: linear-gradient(135deg, #d9782e, #b55b1b);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 15px rgba(217, 120, 46, 0.3);
}

.btn-netflix-primary:hover {
    background: linear-gradient(135deg, #ea8536, #c56520);
    box-shadow: 0 8px 25px rgba(217, 120, 46, 0.45);
}


/* Legacy chips if used elsewhere */

.abonado-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.svc-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    border: 1px solid transparent;
}

.svc-phone {
    background: rgba(217, 120, 46, 0.12);
    border-color: rgba(217, 120, 46, 0.3);
    color: var(--primary-soft);
}

.svc-net {
    background: rgba(46, 140, 217, 0.12);
    border-color: rgba(46, 140, 217, 0.3);
    color: #7ec8f5;
}

.svc-tv {
    background: rgba(140, 46, 217, 0.12);
    border-color: rgba(140, 46, 217, 0.3);
    color: #c87ef5;
}

.svc-app {
    background: rgba(46, 200, 120, 0.1);
    border-color: rgba(46, 200, 120, 0.25);
    color: #7ef5b8;
}


/* Responsive */

@media (max-width: 1100px) {
    .abonados-grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 960px) {
    .abonados-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .abonados-grid,
    .abonados-grid.grid-4 {
        grid-template-columns: 1fr;
    }
}

.incl-chip {
    color: cyan;
    font-weight: 500;
}

.incl-chip .tick {
    color: #28a745;
    margin-right: 5px;
    /* Espacio entre el tick y el texto */
    font-style: normal;
    /* Quita la cursiva predeterminada de <i> */
}

/* ==========================================
   PAQUETES COMBINADOS (DÚOS / TRÍO)
   ========================================== */
.combos {
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(217,120,46,0.10) 0%, transparent 60%), var(--bg-dark);
    padding: 6rem 0;
}
.combos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.combo-card {
    position: relative;
    background: linear-gradient(160deg, rgba(217,120,46,0.08), rgba(181,91,27,0.02));
    border: 1px solid rgba(217,120,46,0.25);
    border-radius: var(--radius);
    padding: 2rem 1.6rem;
    overflow: hidden;
    transition: all 0.35s ease;
}
.combo-card.featured {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 30px rgba(217,120,46,0.18);
}
.combo-badge {
    position: absolute;
    top: 14px; right: -40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #120a03;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.3rem 3rem;
    transform: rotate(40deg);
    text-transform: uppercase;
}
.combo-head {
    text-align: center;
    margin-bottom: 1.2rem;
}
.combo-icons {
    font-size: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    filter: drop-shadow(0 0 8px rgba(217,120,46,0.4));
}
.combo-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-soft);
    letter-spacing: 0.02em;
}
.combo-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}
.combo-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 0;
    border-top: 1px dashed rgba(217,120,46,0.22);
    border-bottom: 1px dashed rgba(217,120,46,0.22);
    margin: 1rem 0;
}
.combo-price-old {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1rem;
    opacity: 0.55;
}
.combo-price-new {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.combo-price-month {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.combo-list {
    list-style: none;
    margin: 1rem 0 1.6rem;
}
.combo-list li {
    padding: 0.45rem 0 0.45rem 1.7rem;
    position: relative;
    color: var(--text-main);
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(217,120,46,0.08);
}
.combo-list li:last-child { border-bottom: 0; }
.combo-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.45rem;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.95rem;
}
.combo-save {
    display: inline-block;
    background: rgba(217,120,46,0.14);
    color: var(--primary-soft);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.combo-cta {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #120a03;
    padding: 0.85rem 1rem;
    border: 0;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}
.combo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(217,120,46,0.35);
}

/* ==========================================
   FAQ - PREGUNTAS FRECUENTES (ACCORDION)
   ========================================== */
.faq {
    background: var(--bg-dark);
    padding: 6rem 0;
}
.faq-list {
    max-width: 820px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.faq-item {
    background: linear-gradient(135deg, rgba(217,120,46,0.06), rgba(217,120,46,0.02));
    border: 1px solid rgba(217,120,46,0.2);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(217,120,46,0.4);
}
.faq-item.open {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(217,120,46,0.1);
}
.faq-q {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 1.2rem 1.4rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-q:focus { outline: none; }
.faq-arrow {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}
.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.4rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.93rem;
}
.faq-item.open .faq-a {
    max-height: 400px;
    padding: 0 1.4rem 1.3rem;
}
.faq-a p + p { margin-top: 0.6rem; }

/* ==========================================
   BOTÓN VOLVER ARRIBA (BACK-TO-TOP)
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 26px; right: 26px;
    z-index: 999;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #120a03;
    font-size: 1.2rem;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    box-shadow: 0 10px 24px rgba(217,120,46,0.35), 0 0 0 1px rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(217,120,46,0.5);
}
@media (max-width: 480px) {
    .back-to-top { bottom: 18px; right: 18px; width: 42px; height: 42px; }
}
/* Fin bloques combo + faq + back-to-top */