/* estilo.css - FOXSUR Cusco */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f0f2f5;
}

.contenedor {
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: white;
    overflow-x: hidden;
}

.clearfix {
    clear: both;
}

/* ============================================ */
/* HEADER */
/* ============================================ */
.header {
    background: #0a2a2f;
    color: white;
    padding: 15px 40px;
    overflow: hidden;
    position: relative;
}

.logo {
    float: left;
    font-size: 28px;
    font-weight: bold;
}

.logo a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: #f39c12;
}

.logo-img {
    height: 50px;
    width: auto;
    margin-right: 10px;
    border-radius: 8px;
    background-color: #0a2a2f;
}

.logo-texto {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.logo-texto span {
    color: #f39c12;
}

.menu {
    float: right;
    margin-top: 8px;
}

.menu a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-size: 14px;
    transition: color 0.3s;
}

.menu a:hover {
    color: #f39c12;
}

.btn-whatsapp {
    background: #25d366;
    padding: 8px 15px;
    border-radius: 20px;
}

.btn-whatsapp:hover {
    background: #20b859;
    color: white !important;
}

/* Menú hamburguesa - oculto en PC */
.menu-toggle {
    display: none;
}

.menu-overlay {
    display: none;
}

/* ============================================ */
/* HERO */
/* ============================================ */
.hero {
    background: linear-gradient(135deg, #0a2a2f 0%, #1a4a4f 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero > p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-logo {
    margin-bottom: 20px;
}

.verificador {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    max-width: 550px;
    margin: 0 auto 30px;
    border-radius: 15px;
}

.verificador input {
    padding: 12px 15px;
    width: 65%;
    border: none;
    border-radius: 8px;
    margin-right: 10px;
}

.verificador button {
    padding: 12px 25px;
    background: #f39c12;
    color: #0a2a2f;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.verificador button:hover {
    background: #e67e22;
    transform: scale(1.02);
}

.btn-planes {
    display: inline-block;
    background: #f39c12;
    color: #0a2a2f;
    padding: 14px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.btn-planes:hover {
    background: #e67e22;
    transform: scale(1.02);
}

.telefono-destacado {
    font-size: 18px;
    opacity: 0.9;
}

/* ============================================ */
/* SECCIÓN DE PLANES */
/* ============================================ */
.seccion-planes {
    padding: 60px 40px;
    background: white;
    width: 100%;
}

.seccion-planes:first-of-type {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.seccion-planes:last-of-type {
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
}

.seccion-planes h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    color: #0a2a2f;
    position: relative;
}

.seccion-planes h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #f39c12;
    margin: 15px auto 0;
    border-radius: 2px;
}

.planes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto;
    max-width: 1400px;
}

.plan {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.plan.destacado {
    border: 2px solid #f39c12;
    background: #fff;
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.2);
}

.plan.destacado:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(243, 156, 18, 0.3);
}

.plan-nombre {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0a2a2f;
}

.plan-velocidad {
    font-size: 32px;
    font-weight: bold;
    color: #f39c12;
    margin-bottom: 10px;
}

.plan-precio {
    font-size: 38px;
    color: #0a2a2f;
    font-weight: bold;
    margin-bottom: 20px;
}

.plan-precio span {
    font-size: 14px;
    font-weight: normal;
    color: #666;
}

.plan-caracteristicas {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
    padding: 0;
}

.plan-caracteristicas li {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #eee;
}

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

.btn-contratar {
    background: #0a2a2f;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    display: inline-block;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-contratar:hover {
    background: #f39c12;
    color: #0a2a2f;
    transform: scale(1.05);
}

.badge {
    background: #f39c12;
    color: #0a2a2f;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.ver-todos {
    text-align: center;
    margin-top: 50px;
}

.ver-todos a {
    background: transparent;
    color: #f39c12;
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    border: 2px solid #f39c12;
    font-weight: bold;
    transition: all 0.3s;
}

.ver-todos a:hover {
    background: #f39c12;
    color: #0a2a2f;
}

/* ============================================ */
/* BENEFICIOS */
/* ============================================ */
.beneficios {
    background: linear-gradient(135deg, #f4f7fc 0%, #e8edf2 100%);
    padding: 60px 20px;
}

.beneficios h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    color: #0a2a2f;
    position: relative;
}

.beneficios h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #f39c12;
    margin: 15px auto 0;
    border-radius: 2px;
}

.beneficios-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.beneficio {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s;
}

.beneficio:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.beneficio-icono {
    font-size: 55px;
    margin-bottom: 15px;
}

.beneficio h3 {
    color: #0a2a2f;
    margin-bottom: 10px;
}

.beneficio p {
    color: #666;
    font-size: 14px;
}

/* ============================================ */
/* TESTIMONIOS */
/* ============================================ */
.testimonios {
    padding: 60px 20px;
    background: white;
}

.testimonios h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    color: #0a2a2f;
    position: relative;
}

.testimonios h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #f39c12;
    margin: 15px auto 0;
    border-radius: 2px;
}

.testimonios-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonio {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    font-style: italic;
    transition: all 0.3s;
    position: relative;
}

.testimonio:before {
    content: '"';
    font-size: 60px;
    color: #f39c12;
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonio:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonio p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.testimonio strong {
    color: #0a2a2f;
    font-style: normal;
}

/* ============================================ */
/* COBERTURA */
/* ============================================ */
.cobertura {
    background: linear-gradient(135deg, #0a2a2f 0%, #1a4a4f 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.cobertura h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 32px;
    position: relative;
}

.cobertura h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #f39c12;
    margin: 15px auto 0;
    border-radius: 2px;
}

.cobertura > p {
    margin-bottom: 30px;
    font-size: 18px;
    opacity: 0.9;
}

.cobertura-lista {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.cobertura-lista span {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
}

.cobertura-lista span:hover {
    background: #f39c12;
    color: #0a2a2f;
    transform: translateY(-2px);
}

/* ============================================ */
/* FOOTER */
/* ============================================ */
.footer {
    background: #0a2a2f;
    color: #aaa;
    padding: 40px 40px;
}

.footer-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-col a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #f39c12;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1a3a3f;
    margin-top: 30px;
    font-size: 12px;
}

/* ============================================ */
/* TABLAS Y FORMULARIOS */
/* ============================================ */
.tabla-planes {
    padding: 50px 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    display: block;
}

th {
    background: #0a2a2f;
    color: white;
    padding: 15px;
    text-align: center;
}

td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

tr:hover {
    background: #f9f9f9;
}

.plan-nombre-tabla {
    font-weight: bold;
    font-size: 18px;
    color: #0a2a2f;
}

.precio-destacado {
    font-size: 24px;
    font-weight: bold;
    color: #f39c12;
}

.btn-contratar-tabla {
    background: #0a2a2f;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s;
}

.btn-contratar-tabla:hover {
    background: #f39c12;
    color: #0a2a2f;
}

.badge-popular {
    background: #f39c12;
    color: #0a2a2f;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
    margin-left: 8px;
    display: inline-block;
}

.titulo-pagina {
    background: #f39c12;
    padding: 40px 20px;
    text-align: center;
    color: #0a2a2f;
}

.titulo-pagina h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.comparativa {
    padding: 0 20px 50px 20px;
    text-align: center;
}

.nota {
    background: #f4f7fc;
    padding: 20px;
    margin: 0 20px 50px 20px;
    text-align: center;
    border-radius: 10px;
}

/* ============================================ */
/* FORMULARIOS */
/* ============================================ */
.formulario-contacto, .formulario-contratar {
    padding: 50px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.campo {
    margin-bottom: 20px;
}

.campo label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.campo input, .campo select, .campo textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: Arial;
}

.btn-enviar {
    background: #0a2a2f;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-enviar:hover {
    background: #f39c12;
    color: #0a2a2f;
}

.mensaje-exito {
    background: #4caf50;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
    text-align: center;
}

.mensaje-error {
    background: #ff9800;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
    text-align: center;
}

.info-contacto-adicional {
    margin-top: 40px;
    padding: 20px;
    background: #f4f7fc;
    border-radius: 10px;
    text-align: center;
}

.info-contacto-adicional h3 {
    margin-bottom: 15px;
    color: #0a2a2f;
}

/* ============================================ */
/* SOPORTE */
/* ============================================ */
.soporte {
    padding: 50px 20px;
    text-align: center;
}

.soporte-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.soporte-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s;
}

.soporte-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.soporte-icono {
    font-size: 48px;
    margin-bottom: 15px;
}

.reportar-falla {
    background: #f4f7fc;
    padding: 50px 20px;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
}

.reportar-falla h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #0a2a2f;
}

.preguntas-frecuentes {
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.preguntas-frecuentes h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #0a2a2f;
}

.pregunta {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.pregunta h3 {
    color: #0a2a2f;
    margin-bottom: 10px;
}

/* ============================================ */
/* COBERTURA.PHP */
/* ============================================ */
.verificador-cobertura {
    background: #f4f7fc;
    padding: 50px 20px;
    text-align: center;
}

.verificador-cobertura h2 {
    margin-bottom: 20px;
    color: #0a2a2f;
}

.verificador-cobertura form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.verificador-cobertura input {
    padding: 12px;
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.verificador-cobertura button {
    background: #f39c12;
    color: #0a2a2f;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.lista-cobertura {
    padding: 50px 20px;
    text-align: center;
}

.lista-cobertura h3 {
    margin-bottom: 20px;
    color: #0a2a2f;
}

.proximas-zonas {
    background: #f4f7fc;
    padding: 50px 20px;
    text-align: center;
}

.notificacion {
    margin-top: 20px;
}

.notificacion a {
    color: #f39c12;
    text-decoration: none;
}

/* ============================================ */
/* CONTRATAR.PHP */
/* ============================================ */
.formulario-contratar {
    padding: 50px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.info-contratacion {
    margin-top: 40px;
    padding: 20px;
    background: #f4f7fc;
    border-radius: 10px;
}

.info-contratacion h3 {
    color: #0a2a2f;
    margin-bottom: 15px;
}

/* ============================================ */
/* RESPONSIVE - TABLETS */
/* ============================================ */
@media (max-width: 1024px) {
    .seccion-planes {
        padding: 50px 30px;
    }
    
    .plan {
        min-width: 260px;
    }
}

/* ============================================ */
/* RESPONSIVE - MÓVILES */
/* ============================================ */
@media (max-width: 768px) {
    /* Header */
    .header {
        padding: 15px 20px;
    }
    
    .logo {
        float: none;
        display: inline-block;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-texto {
        font-size: 20px;
    }
    
    /* Menú hamburguesa */
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: #0a2a2f;
        z-index: 1000;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        float: none;
        margin-top: 0;
    }
    
    .menu.active {
        right: 0;
    }
    
    .menu a {
        display: block;
        margin: 0 0 20px 0;
        padding: 12px 15px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .menu a:last-child {
        border-bottom: none;
    }
    
    .btn-whatsapp {
        display: inline-block;
        width: auto;
        text-align: center;
        margin-top: 20px;
    }
    
    /* Botón hamburguesa */
    .menu-toggle {
        display: block;
        position: absolute;
        top: 18px;
        right: 20px;
        width: 30px;
        height: 25px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: white;
        margin: 5px 0;
        transition: all 0.3s;
        border-radius: 3px;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .menu-overlay.active {
        display: block;
    }
    
    /* Hero */
    .hero {
        padding: 40px 15px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero > p {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .hero-logo {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .hero-logo img {
        width: 100px !important;
    }
    
    .verificador {
        padding: 20px;
        width: 100%;
    }
    
    .verificador input {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .verificador button {
        width: 100%;
    }
    
    .btn-planes {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .telefono-destacado {
        font-size: 14px;
    }
    
    /* Sección planes */
    .seccion-planes {
        padding: 40px 20px;
    }
    
    .seccion-planes h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .seccion-planes h2:after {
        width: 60px;
        height: 3px;
    }
    
    .planes {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .plan {
        width: 100%;
        max-width: 350px;
        min-width: auto;
        padding: 25px 20px;
    }
    
    .plan.destacado {
        transform: scale(1);
    }
    
    .plan.destacado:hover {
        transform: translateY(-5px);
    }
    
    .plan-nombre {
        font-size: 22px;
    }
    
    .plan-velocidad {
        font-size: 28px;
    }
    
    .plan-precio {
        font-size: 34px;
    }
    
    /* Beneficios */
    .beneficios {
        padding: 40px 20px;
    }
    
    .beneficios h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .beneficios-container {
        flex-direction: column;
        align-items: center;
    }
    
    .beneficio {
        width: 100%;
        max-width: 280px;
    }
    
    /* Testimonios */
    .testimonios {
        padding: 40px 20px;
    }
    
    .testimonios h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .testimonios-container {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonio {
        width: 100%;
        max-width: 320px;
    }
    
    /* Cobertura */
    .cobertura {
        padding: 40px 20px;
    }
    
    .cobertura h2 {
        font-size: 24px;
    }
    
    .cobertura > p {
        font-size: 14px;
    }
    
    .cobertura-lista span {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    /* Footer */
    .footer {
        padding: 30px 20px;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-col {
        width: 100%;
    }
    
    /* Tablas */
    table {
        display: block;
        overflow-x: auto;
    }
    
    /* Soporte */
    .soporte-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .soporte-item {
        width: 100%;
        max-width: 320px;
    }
}

/* ============================================ */
/* MÓVILES PEQUEÑOS */
/* ============================================ */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .seccion-planes h2 {
        font-size: 20px;
    }
    
    .plan {
        padding: 20px 15px;
    }
    
    .plan-velocidad {
        font-size: 24px;
    }
    
    .plan-precio {
        font-size: 28px;
    }
    
    .cobertura-lista span {
        padding: 4px 12px;
        font-size: 11px;
    }
}

/* ============================================ */
/* ORIENTACIÓN HORIZONTAL */
/* ============================================ */
@media (max-width: 768px) and (orientation: landscape) {
    .menu {
        padding: 60px 20px 20px;
    }
    
    .menu a {
        padding: 8px 15px;
        margin-bottom: 10px;
    }
}

/* ============================================ */
/* MEJORAS TÁCTILES */
/* ============================================ */
@media (max-width: 768px) {
    button, 
    .btn-contratar, 
    .btn-planes, 
    .ver-todos a,
    .menu a,
    .cobertura-lista span,
    .verificador button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    input, select, textarea {
        font-size: 16px !important;
    }
    
    html {
        scroll-behavior: smooth;
    }
    
    .btn-contratar, 
    .btn-planes,
    .menu a {
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn-contratar:active,
    .btn-planes:active,
    .ver-todos a:active {
        transform: scale(0.97);
    }
}