/* ============================================
   VARIABLES GLOBALES
   ============================================ */
:root {
    --electric-blue: #00d4ff;
    --electric-dark: #00a8cc;
    --dark: #0a0a0a;
    --dark-blue: #0a1628;
    --gray: #1a1a2e;
    --light: #f0f4f8;
    --white: #ffffff;
}

/* ============================================
   RESET Y BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER Y NAVEGACIÓN
   ============================================ */
.main-header {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
}

.main-nav {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--electric-blue);
}

/* Botón menú móvil */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 25px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================
   BOTONES GLOBALES
   ============================================ */
.btn-primary {
    background: var(--electric-blue);
    color: var(--dark);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.btn-outline {
    border: 2px solid var(--electric-blue);
    color: var(--electric-blue);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--electric-blue);
    color: var(--dark);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ============================================
   PÁGINA: INDEX (INICIO)
   ============================================ */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(10, 10, 10, 0.85) 100%), url('/img/9.png') center/cover no-repeat;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--electric-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: #8892b0;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.2);
}

/* Features */
.features {
    padding: 80px 0;
    background: var(--dark);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, var(--gray) 0%, var(--dark-blue) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
}

.feature-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.feature-card:hover .feature-img img {
    transform: scale(1.1);
}

.feature-card h3 {
    color: var(--electric-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #8892b0;
}

/* Planes preview en index */
.plans-preview {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-blue) 100%);
}

.plans-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.plans-preview .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.plan-card {
    background: rgba(10, 22, 40, 0.8);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
}

.plan-card.popular {
    border: 2px solid var(--electric-blue);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--electric-blue);
    color: var(--dark);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.plan-speed {
    font-size: 3rem;
    font-weight: bold;
    color: var(--electric-blue);
    margin-bottom: 5px;
}

.plan-speed span {
    font-size: 1rem;
    color: #8892b0;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 20px 0;
}

.plan-price span {
    font-size: 1rem;
    color: #8892b0;
    font-weight: normal;
}

.plan-card ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.plan-card li {
    padding: 8px 0;
    color: #8892b0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.plan-card li:before {
    content: '✓ ';
    color: var(--electric-blue);
}

.text-center {
    text-align: center;
}

/* Galería */
.gallery {
    padding: 80px 0;
    background: var(--dark);
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Cobertura highlight */
.coverage-highlight {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-blue) 0%, var(--dark) 100%);
}

.coverage-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.coverage-text h2 {
    color: var(--electric-blue);
    margin-bottom: 20px;
}

.coverage-text ul {
    list-style: none;
    margin: 30px 0;
}

.coverage-text li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #8892b0;
}

.coverage-qr {
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
}

.coverage-qr img {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
}

.coverage-qr p {
    color: var(--dark);
    font-weight: 600;
}

/* CTA */
.contact-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--electric-dark) 100%);
}

.contact-cta h2 {
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-cta p {
    color: rgba(10, 10, 10, 0.8);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.btn-whatsapp-large {
    background: var(--dark);
    color: var(--white);
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s;
}

.btn-whatsapp-large:hover {
    transform: scale(1.05);
}

/* ============================================
   PÁGINA: PLANES
   ============================================ */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%), url('/img/9.png') center/cover;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--white) 0%, var(--electric-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    color: #8892b0;
    font-size: 1.1rem;
}

.plans-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0a1628 100%);
}

.plans-section .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

/* Plan card detallado */
.plans-section .plan-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.plans-section .plan-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
}

.plans-section .plan-card.featured {
    border: 2px solid #00d4ff;
    transform: scale(1.05);
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.1) 0%, rgba(10, 22, 40, 0.95) 100%);
}

.plans-section .plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #0a0a0a;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    color: #8892b0;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plans-section .plan-speed {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.plans-section .plan-speed .number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.plans-section .plan-speed .unit {
    font-size: 1.5rem;
    color: #8892b0;
    font-weight: 500;
}

.plans-section .plan-price {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plans-section .plan-price .currency {
    font-size: 2rem;
    color: #fff;
    font-weight: 600;
    vertical-align: top;
}

.plans-section .plan-price .amount {
    font-size: 4rem;
    color: #fff;
    font-weight: 800;
    line-height: 1;
}

.plans-section .plan-price .period {
    font-size: 1rem;
    color: #8892b0;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #ccd6f6;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li:last-child {
    border-bottom: none;
}

.icon {
    width: 20px;
    height: 20px;
    color: #00d4ff;
    flex-shrink: 0;
}

.btn-plan {
    display: block;
    text-align: center;
    padding: 16px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #00d4ff;
    color: #00d4ff;
    background: transparent;
}

.btn-plan:hover {
    background: #00d4ff;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-plan.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #0a0a0a;
    border: none;
}

.btn-plan.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.plans-conditions {
    background: rgba(10, 22, 40, 0.6);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.plans-conditions h3 {
    text-align: center;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.condition-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.condition-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
}

.condition-item p {
    color: #8892b0;
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   PÁGINA: COBERTURA
   ============================================ */
.coverage-simple {
    padding: 60px 0;
    background: var(--dark);
}

.coverage-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.area-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
}

.area-card.full {
    border-color: #00d4ff;
}

.area-card.partial {
    border-color: #ffa500;
}

.area-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.area-card.full .area-icon {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
}

.area-card.partial .area-icon {
    background: rgba(255, 165, 0, 0.1);
    color: #ffa500;
}

.area-card h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.area-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.area-card li {
    padding: 10px 0;
    color: #8892b0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.area-card li:last-child {
    border-bottom: none;
}

.area-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.area-card.full .area-badge {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
}

.area-card.partial .area-badge {
    background: rgba(255, 165, 0, 0.1);
    color: #ffa500;
}

.coverage-contact-box {
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.05) 0%, rgba(10, 22, 40, 0.9) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.coverage-contact-box h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.coverage-contact-box p {
    color: #8892b0;
    margin-bottom: 25px;
}

.contact-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-phone:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Instalaciones */
.installations-section {
    padding: 80px 0;
    background: var(--dark-blue);
}

.installations-section h2 {
    text-align: center;
    color: var(--electric-blue);
    margin-bottom: 50px;
    font-size: 2rem;
}

.installations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.installation-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: transform 0.3s;
}

.installation-card:hover {
    transform: translateY(-10px);
}

.installation-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.installation-card p {
    padding: 20px;
    color: #8892b0;
    text-align: center;
}

/* ============================================
   PÁGINA: NOSOTROS
   ============================================ */
.about-section {
    padding: 60px 0;
    background: var(--dark);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    color: var(--electric-blue);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    color: #8892b0;
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.mv-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mv-card h3 {
    color: var(--electric-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.mv-card p {
    color: #8892b0;
    line-height: 1.8;
}

.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    text-align: center;
    color: var(--electric-blue);
    margin-bottom: 50px;
    font-size: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-item h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.value-item p {
    color: #8892b0;
    font-size: 0.95rem;
}

.legal-section h2 {
    text-align: center;
    color: var(--electric-blue);
    margin-bottom: 30px;
}

.legal-card {
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.05) 0%, rgba(10, 22, 40, 0.9) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.legal-card p {
    color: #8892b0;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-card p:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-card strong {
    color: var(--white);
}

/* ============================================
   PÁGINA: TÉRMINOS
   ============================================ */
.terms-section {
    padding: 60px 0;
    background: var(--dark);
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-intro {
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.05) 0%, rgba(10, 22, 40, 0.9) 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 4px solid var(--electric-blue);
}

.terms-intro p {
    color: #8892b0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.term-item {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.term-item h2 {
    color: var(--electric-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.term-item p {
    color: #8892b0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.term-item ul {
    list-style: none;
    padding-left: 0;
}

.term-item li {
    color: #8892b0;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.term-item li::before {
    content: '•';
    color: var(--electric-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.term-item strong {
    color: var(--white);
}

.terms-footer {
    text-align: center;
    padding: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-footer p {
    color: #8892b0;
    margin-bottom: 5px;
}

.terms-footer strong {
    color: var(--white);
}

.terms-date {
    color: #555;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* ============================================
   PÁGINA: CONTACTO
   ============================================ */
.contact-section {
    padding: 60px 0;
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    color: var(--electric-blue);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-card h3 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-card p {
    color: #8892b0;
    margin-bottom: 15px;
}

.qr-section {
    text-align: center;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.qr-section img {
    width: 180px;
    height: 180px;
    margin-bottom: 10px;
}

.qr-section p {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.contact-form-wrapper h2 {
    color: var(--electric-blue);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

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

.form-group label {
    display: block;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 500;
}

/* Input normal */
.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
}

/* Select con flecha */
.form-group select {
    appearance: none;
    background: rgba(255, 255, 255, 0.05) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300d4ff' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 15px center;
    color: var(--white);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    padding: 12px 40px 12px 15px;
    width: 100%;
    font-size: 1rem;
    cursor: pointer;
}

/* Textarea */
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
}

.form-group select option {
    background: var(--dark-blue);
    color: var(--white);
    padding: 12px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-note {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.form-note p {
    color: #8892b0;
    margin-bottom: 15px;
}

/* Mapa */
.location-section {
    padding: 60px 0;
    background: var(--dark-blue);
    text-align: center;
}

.location-section h2 {
    color: var(--electric-blue);
    margin-bottom: 30px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.map-container iframe {
    display: block;
}

.location-address {
    color: #8892b0;
    font-size: 1.1rem;
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--dark);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-info {
    margin-bottom: 20px;
    color: #8892b0;
}

.footer-info p {
    margin-bottom: 5px;
}

.footer-links a {
    color: var(--electric-blue);
    text-decoration: none;
    margin: 0 15px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    color: #555;
    font-size: 0.9rem;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ============================================
   RESPONSIVE - MÓVIL
   ============================================ */
@media (max-width: 768px) {
    /* Menú hamburguesa mejorado */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 45px;
        height: 45px;
        background: rgba(0, 212, 255, 0.1);
        border: 1px solid rgba(0, 212, 255, 0.3);
        border-radius: 10px;
        cursor: pointer;
        padding: 0;
        z-index: 1100;
        transition: all 0.3s;
    }

    .menu-toggle:hover {
        background: rgba(0, 212, 255, 0.2);
    }

    .menu-toggle span {
        width: 22px;
        height: 2px;
        background: var(--electric-blue);
        border-radius: 2px;
        transition: all 0.3s;
        margin: 3px 0;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Menú desplegable desde la derecha */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #0a1628 0%, #0a0a0a 100%);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 25px 30px;
        gap: 5px;
        transition: right 0.3s ease;
        z-index: 999;
        border-left: 2px solid rgba(0, 212, 255, 0.2);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav a {
        font-size: 1.1rem;
        padding: 15px 20px;
        width: 100%;
        border-radius: 10px;
        margin: 0;
        border-bottom: none;
        transition: all 0.3s;
        color: #8892b0;
    }

    .main-nav a:hover {
        background: rgba(0, 212, 255, 0.1);
        color: var(--electric-blue);
        transform: translateX(5px);
    }

    .main-nav a.active {
        color: var(--electric-blue);
        background: rgba(0, 212, 255, 0.15);
        font-weight: 600;
    }

    /* Overlay oscuro cuando menú está abierto */
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 998;
        backdrop-filter: blur(3px);
    }

    /* Ajustes header en móvil */
    .main-header {
        padding: 12px 0;
    }

    .logo img {
        height: 38px;
    }

    /* Resto de ajustes móvil */
    .hero {
        padding: 100px 0 60px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn-primary, .btn-whatsapp {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    /* Planes */
    .plan-card.popular {
        transform: none;
    }

    .plans-section .plan-card.featured {
        transform: none;
    }

    .plans-section .plan-card.featured:hover {
        transform: translateY(-10px);
    }

    .plan-speed .number {
        font-size: 3rem;
    }

    .plan-price .amount {
        font-size: 3rem;
    }

    /* Contacto */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .qr-section {
        max-width: 250px;
        margin: 30px auto 0;
    }

    /* Cobertura */
    .coverage-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Nosotros */
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-image {
        order: -1;
    }

    /* Términos */
    .plans-conditions,
    .terms-section .plans-conditions {
        padding: 30px 20px;
    }

    .term-item {
        padding: 25px 20px;
    }

    /* Footer */
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-links a {
        margin: 0;
    }
}