/* ==============================================
   LUIGI SISTEMAS - HOJA DE ESTILOS PRINCIPAL
   Metodología: BEM (Bloque, Elemento, Modificador)
   Colores corporativos:
   - Azul marino: #1B2A4A
   - Rojo: #C62828
   - Blanco: #FFFFFF
   - Gris texto: #555555
   - Gris claro: #F5F7FA
   ============================================== */

/* =============================================
   1. RESET Y CONFIGURACIÓN BASE
   ============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333333;
    line-height: 1.7;
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =============================================
   2. CONTENEDOR REUTILIZABLE
   ============================================= */
.contenedor {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   3. TÍTULOS DE SECCIÓN (REUTILIZABLE)
   ============================================= */
.seccion__titulo {
    text-align: center;
    color: #1B2A4A;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
}

.seccion__titulo::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #C62828;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* =============================================
   4. BARRA DE NAVEGACIÓN (STICKY)
   ============================================= */
.navegacion {
    background-color: #FFFFFF;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navegacion__contenedor {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.navegacion__logo {
    display: flex;
    align-items: center;
}

.navegacion__logo-imagen {
    height: 50px;
    width: auto;
}

.navegacion__menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.navegacion__enlace {
    color: #1B2A4A;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.navegacion__enlace:hover {
    color: #C62828;
}

.navegacion__enlace--activo {
    color: #C62828;
    border-bottom: 2px solid #C62828;
}

.navegacion__boton {
    background-color: #C62828;
    color: #FFFFFF !important;
    padding: 10px 22px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.navegacion__boton:hover {
    background-color: #8B0000;
}

/* =============================================
   5. HÉROE PRINCIPAL
   ============================================= */
.heroe {
    background: linear-gradient(135deg, #1B2A4A 0%, #0D1B33 100%);
    padding: 100px 20px;
    text-align: center;
}

.heroe__contenido {
    max-width: 800px;
    margin: 0 auto;
}

.heroe__titulo {
    color: #FFFFFF;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.heroe__subtitulo {
    color: #CCCCCC;
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.heroe__boton {
    display: inline-block;
    background-color: #C62828;
    color: #FFFFFF;
    padding: 16px 40px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.heroe__boton:hover {
    background-color: #8B0000;
    transform: translateY(-2px);
}

/* =============================================
   6. SECCIÓN SERVICIOS
   ============================================= */
.servicios {
    padding: 80px 0;
}

.servicios__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.servicio {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.servicio:hover {
    box-shadow: 0 10px 30px rgba(27, 42, 74, 0.15);
    transform: translateY(-5px);
}

.servicio__icono {
    font-size: 50px;
    margin-bottom: 20px;
}

.servicio__nombre {
    color: #1B2A4A;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.servicio__descripcion {
    color: #555555;
    font-size: 15px;
    line-height: 1.7;
}

/* =============================================
   7. SECCIÓN VENTAJAS COMPETITIVAS
   ============================================= */
.ventajas {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.ventajas__subtitulo {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 50px;
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

.ventajas__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ventaja {
    background-color: #F9FAFB;
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    padding: 35px 25px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ventaja:hover {
    box-shadow: 0 8px 25px rgba(27, 42, 74, 0.1);
    transform: translateY(-4px);
}

.ventaja__icono {
    font-size: 45px;
    margin-bottom: 20px;
}

.ventaja__titulo {
    color: #1B2A4A;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ventaja__descripcion {
    color: #555555;
    font-size: 14px;
    line-height: 1.7;
}

/* =============================================
   8. SECCIÓN PLANES Y PAQUETES
   ============================================= */
.planes {
    background-color: #F5F7FA;
    padding: 80px 0;
}

.planes__instruccion {
    text-align: center;
    color: #666666;
    margin-bottom: 50px;
    font-size: 16px;
}

.planes__grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.paquete {
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    padding: 30px 20px;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    user-select: none;
    display: flex;
    flex-direction: column;
}

.paquete:hover {
    border-color: #1B2A4A;
    box-shadow: 0 8px 25px rgba(27, 42, 74, 0.12);
    transform: translateY(-4px);
}

.paquete--destacado {
    border-color: #C62828;
    background: #FFFBFB;
    position: relative;
}

.paquete__encabezado {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 15px;
}

.paquete__numero {
    background: #1B2A4A;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.paquete__nombre {
    font-size: 18px;
    color: #1B2A4A;
    font-weight: 700;
    text-align: center;
}

.paquete__recomendado {
    background: #C62828;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.paquete__descripcion {
    font-size: 14px;
    color: #555555;
    margin-bottom: 10px;
    text-align: center;
    flex-grow: 1;
}

.paquete__ejemplos {
    font-size: 12px;
    color: #999999;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.5;
}

.paquete__flecha {
    display: block;
    text-align: center;
    color: #C62828;
    font-weight: 600;
    font-size: 13px;
    padding-top: 12px;
    border-top: 1px solid #EEEEEE;
    margin-top: auto;
}

.planes__pagos {
    max-width: 900px;
    margin: 30px auto 0;
}

.pago {
    display: none;
    background: #FFFFFF;
    border: 2px solid #C62828;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 15px;
}

.pago--visible {
    display: block;
    animation: pagoFadeIn 0.3s ease;
}

@keyframes pagoFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.pago__subtitulo {
    text-align: center;
    color: #1B2A4A;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #EEEEEE;
}

.pago__tabs {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #C62828;
}

.pago__tab {
    flex: 1;
    padding: 12px 10px;
    background: #FFFFFF;
    color: #C62828;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    text-align: center;
}

.pago__tab:not(:last-child) {
    border-right: 1px solid #EEEEEE;
}

.pago__tab:hover {
    background: #FFF0F0;
}

.pago__tab--activo {
    background: #C62828;
    color: #FFFFFF;
}

.pago__tab--activo:hover {
    background: #A51D1D;
}

.pago__periodo {
    display: none;
}

.pago__periodo--visible {
    display: block;
    animation: pagoFadeIn 0.3s ease;
}

.pago__tabla {
    width: 100%;
    border-collapse: collapse;
}

.pago__encabezado-tabla th {
    text-align: left;
    padding: 10px;
    font-size: 13px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #EEEEEE;
}

.pago__tabla td {
    padding: 14px 10px;
    border-bottom: 1px solid #EEEEEE;
    font-size: 15px;
    color: #333333;
}

.pago__tabla tr:last-child td {
    border-bottom: none;
}

.pago__plan {
    font-weight: 600;
    color: #1B2A4A;
}

.pago__precio {
    text-align: center;
}

.pago__precio small {
    display: block;
    color: #999999;
    font-size: 12px;
}

.pago__accion {
    text-align: right;
}

.pago__boton {
    display: inline-block;
    background: #C62828;
    color: #FFFFFF;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.3s ease;
}

.pago__boton:hover {
    background: #8B0000;
}

.pago__nota-tabla {
    text-align: center;
    color: #888888;
    font-size: 13px;
    margin-top: 15px;
    font-style: italic;
}

.planes__nota {
    text-align: center;
    color: #888888;
    font-size: 13px;
    margin-top: 40px;
}

/* =============================================
   9. SECCIÓN PASOS
   ============================================= */
.pasos {
    padding: 80px 0;
}

.pasos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.paso__numero {
    width: 60px;
    height: 60px;
    background-color: #C62828;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.paso__titulo {
    color: #1B2A4A;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.paso__descripcion {
    color: #555555;
    font-size: 14px;
    line-height: 1.7;
}

/* =============================================
   10. SECCIÓN CONTACTO
   ============================================= */
.contacto {
    background-color: #F5F7FA;
    padding: 80px 0;
    text-align: center;
}

.contacto__texto {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #555555;
    font-size: 16px;
    line-height: 1.7;
}

.contacto__boton {
    display: inline-block;
    background-color: #C62828;
    color: #FFFFFF;
    padding: 16px 40px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contacto__boton:hover {
    background-color: #8B0000;
    transform: translateY(-2px);
}

.contacto__datos {
    margin-top: 40px;
}

.contacto__dato {
    color: #1B2A4A;
    font-size: 15px;
    margin-bottom: 8px;
}

/* =============================================
   11. PIE DE PÁGINA
   ============================================= */
.pie {
    background-color: #1B2A4A;
    color: #FFFFFF;
    text-align: center;
    padding: 40px 20px;
}

.pie__contenido {
    max-width: 600px;
    margin: 0 auto;
}

.pie__logo {
    height: 40px;
    width: auto;
    margin: 0 auto 20px;
}

.pie__copyright {
    font-size: 13px;
    color: #AAAAAA;
    margin-bottom: 5px;
}

.pie__legal {
    margin-top: 15px;
    font-size: 11px;
    color: #777777;
    line-height: 1.5;
}

/* =============================================
   12. CARRITO DE COMPRAS
   ============================================= */
.carrito-icono {
    background: none;
    border: 2px solid #C62828;
    color: #C62828;
    font-size: 18px;
    padding: 8px 14px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.carrito-icono:hover {
    background: #C62828;
    color: #FFFFFF;
}

#carrito-contador {
    background: #C62828;
    color: #FFFFFF;
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    top: -8px;
    right: -8px;
    transition: transform 0.2s ease;
}

.carrito-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.carrito-overlay--visible {
    display: block;
}

.carrito-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: #FFFFFF;
    z-index: 2001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
}

.carrito-panel--abierto {
    right: 0;
}

.carrito-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #1B2A4A;
    color: #FFFFFF;
}

.carrito-header h3 {
    font-size: 20px;
    margin: 0;
}

.carrito-cerrar {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 22px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s ease;
}

.carrito-cerrar:hover {
    color: #FF6B6B;
}

.carrito-lista {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
}

.carrito-vacio {
    text-align: center;
    color: #999;
    margin-top: 60px;
    font-size: 16px;
}

.carrito-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #EEEEEE;
}

.carrito-item-info {
    flex: 1;
}

.carrito-item-nombre {
    font-weight: 600;
    color: #1B2A4A;
    font-size: 14px;
    margin-bottom: 3px;
}

.carrito-item-periodo {
    font-size: 12px;
    color: #888;
}

.carrito-item-precio {
    font-weight: 700;
    color: #C62828;
    font-size: 15px;
    white-space: nowrap;
}

.carrito-item-eliminar {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    transition: color 0.2s ease;
}

.carrito-item-eliminar:hover {
    color: #C62828;
}

.carrito-total {
    padding: 20px 25px;
    background: #F5F7FA;
    border-top: 2px solid #EEEEEE;
}

.carrito-total p {
    margin-bottom: 10px;
    color: #1B2A4A;
}

.carrito-periodo {
    font-size: 13px;
    color: #888 !important;
    margin-bottom: 15px !important;
}

.carrito-boton {
    display: block;
    width: 100%;
    background: #25D366;
    color: #FFFFFF;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background 0.3s ease;
}

.carrito-boton:hover {
    background: #1DA851;
}

.carrito-boton--vaciar {
    background: #FFFFFF;
    color: #C62828;
    border: 2px solid #C62828;
}

.carrito-boton--vaciar:hover {
    background: #FFF0F0;
}

/* =============================================
   13. MODAL DE TÉRMINOS Y CONDICIONES
   ============================================= */
.modal-terminos {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-terminos--visible {
    display: flex;
}

.modal-terminos__contenido {
    background: #FFFFFF;
    border-radius: 15px;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-terminos__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #1B2A4A;
    color: #FFFFFF;
    border-radius: 15px 15px 0 0;
}

.modal-terminos__header h3 {
    font-size: 18px;
    margin: 0;
}

.modal-terminos__cerrar {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
}

.modal-terminos__cerrar:hover {
    color: #FF6B6B;
}

.modal-terminos__body {
    padding: 25px;
}

.modal-terminos__texto {
    color: #555;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-terminos__resumen {
    background: #F5F7FA;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.modal-terminos__resumen p {
    color: #1B2A4A;
    font-size: 14px;
    margin-bottom: 10px;
}

.modal-terminos__resumen ul {
    list-style: none;
    padding: 0;
}

.modal-terminos__resumen li {
    color: #555;
    font-size: 13px;
    padding: 4px 0;
    line-height: 1.5;
}

.modal-terminos__leer {
    margin-top: 12px;
    text-align: center;
}

.modal-terminos__leer a {
    color: #C62828;
    font-weight: 600;
    font-size: 13px;
    text-decoration: underline;
}

.modal-terminos__leer a:hover {
    color: #8B0000;
}

.modal-terminos__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #1B2A4A;
    font-weight: 600;
}

.modal-terminos__checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #C62828;
    flex-shrink: 0;
}

.modal-terminos__footer {
    padding: 20px 25px;
    border-top: 1px solid #EEEEEE;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-terminos__boton {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease, opacity 0.3s ease;
    background: #25D366;
    color: #FFFFFF;
}

.modal-terminos__boton:hover:not(:disabled) {
    background: #1DA851;
}

.modal-terminos__boton:disabled {
    background: #CCCCCC;
    color: #888888;
    cursor: not-allowed;
}

.modal-terminos__boton--cancelar {
    background: #FFFFFF;
    color: #C62828;
    border: 2px solid #C62828;
}

.modal-terminos__boton--cancelar:hover {
    background: #FFF0F0;
}

/* =============================================
   14. PÁGINA NOSOTROS
   ============================================= */
.heroe-nosotros {
    background: linear-gradient(135deg, #1B2A4A 0%, #0D1B33 100%);
    padding: 80px 20px;
    text-align: center;
}

.heroe-nosotros__titulo {
    color: #FFFFFF;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.heroe-nosotros__subtitulo {
    color: #CCCCCC;
    font-size: 18px;
}

.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.seccion__titulo--izquierda {
    text-align: left;
}

.seccion__titulo--izquierda::after {
    margin: 15px 0 0;
}

.nosotros-parrafo {
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.nosotros-imagen__caja {
    background: #F5F7FA;
    border: 2px dashed #C62828;
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
}

.nosotros-imagen__icono {
    font-size: 80px;
    display: block;
    margin-bottom: 15px;
}

.nosotros-imagen__texto {
    color: #1B2A4A;
    font-weight: 700;
    font-size: 20px;
}

.seccion--gris {
    background-color: #F5F7FA;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mvv__icono {
    font-size: 50px;
    margin-bottom: 20px;
}

.mvv__titulo {
    color: #1B2A4A;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mvv__descripcion {
    color: #555555;
    font-size: 14px;
    line-height: 1.7;
}

.mvv__lista {
    text-align: left;
    list-style: none;
}

.mvv__item {
    color: #555555;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.porque-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.porque {
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.porque:hover {
    box-shadow: 0 8px 25px rgba(27, 42, 74, 0.1);
    transform: translateY(-4px);
}

.porque__icono {
    font-size: 50px;
    margin-bottom: 20px;
}

.porque__titulo {
    color: #1B2A4A;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.porque__descripcion {
    color: #555555;
    font-size: 14px;
    line-height: 1.7;
}

.catalogo-intro {
    text-align: center;
    max-width: 600px;
    margin: -30px auto 50px;
    color: #666666;
    font-size: 15px;
}

.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.catalogo-col {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 25px 20px;
}

.catalogo-titulo {
    color: #1B2A4A;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #C62828;
}

.catalogo-lista {
    list-style: none;
}

.catalogo-item {
    color: #555555;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid #F0F0F0;
}

.catalogo-item:last-child {
    border-bottom: none;
}

.catalogo-badge {
    display: inline-block;
    background: #E8F5E9;
    color: #2E7D32;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    margin-left: 5px;
}

.catalogo-badge--futuro {
    background: #FFF3E0;
    color: #E65100;
}

.catalogo-nota {
    text-align: center;
    color: #888;
    font-size: 14px;
    margin-top: 30px;
    font-style: italic;
}

/* =============================================
   15. PÁGINA DE TÉRMINOS Y CONDICIONES
   ============================================= */
.terminos-contenido {
    max-width: 800px;
    margin: 0 auto;
}

.terminos__titulo {
    color: #1B2A4A;
    font-size: 22px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F0F0F0;
}

.terminos__titulo:first-child {
    margin-top: 0;
}

.terminos__texto {
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.terminos__lista {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 0;
}

.terminos__lista li {
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.terminos__lista li::before {
    content: '•';
    color: #C62828;
    font-weight: 700;
    font-size: 18px;
    position: absolute;
    left: 5px;
    top: -2px;
}

.terminos__contacto {
    background: #F5F7FA;
    border-radius: 10px;
    padding: 25px 30px;
    margin-top: 20px;
}

.terminos__contacto p {
    color: #1B2A4A;
    font-size: 15px;
    margin-bottom: 8px;
}

/* =============================================
   16. RESPONSIVE (TABLETS Y MÓVILES)
   ============================================= */
@media (max-width: 768px) {
    
    .navegacion__menu {
        gap: 10px;
    }
    
    .navegacion__enlace {
        font-size: 10px;
    }
    
    .navegacion__boton {
        padding: 8px 12px;
        font-size: 10px;
    }
    
    .carrito-icono {
        font-size: 16px;
        padding: 6px 10px;
    }
    
    .heroe {
        padding: 60px 20px;
    }
    
    .heroe__titulo {
        font-size: 26px;
    }
    
    .heroe__subtitulo {
        font-size: 14px;
    }
    
    .heroe__boton {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .seccion__titulo {
        font-size: 24px;
    }
    
    .servicios__grid {
        grid-template-columns: 1fr;
    }
    
    .ventajas__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .planes__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .paquete {
        padding: 20px 15px;
    }
    
    .paquete__nombre {
        font-size: 16px;
    }
    
    .paquete__descripcion {
        font-size: 13px;
    }
    
    .paquete__ejemplos {
        font-size: 11px;
    }
    
    .pago__tabs {
        flex-direction: column;
    }
    
    .pago__tab {
        font-size: 12px;
        padding: 10px;
    }
    
    .pago__tab:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #EEEEEE;
    }
    
    .pago__tabla td {
        font-size: 13px;
        padding: 10px 6px;
    }
    
    .pago__boton {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .pasos__grid {
        grid-template-columns: 1fr;
    }
    
    .contacto__boton {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .nosotros-grid {
        grid-template-columns: 1fr;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .porque-grid {
        grid-template-columns: 1fr;
    }
    
    .catalogo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .heroe-nosotros__titulo {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    
    .navegacion__contenedor {
        height: auto;
        flex-direction: column;
        padding: 10px 20px;
    }
    
    .navegacion__logo-imagen {
        height: 40px;
        margin-bottom: 10px;
    }
    
    .navegacion__menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .heroe__titulo {
        font-size: 22px;
    }
    
    .ventajas__grid {
        grid-template-columns: 1fr;
    }
    
    .planes__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pago {
        padding: 15px;
    }
    
    .pago__tabla td {
        font-size: 12px;
    }
    
    .pago__descuento,
    .pago__etiqueta {
        display: block;
        margin: 3px 0 0;
    }
    
    .carrito-panel {
        width: 100%;
        right: -100%;
    }
    
    .catalogo-grid {
        grid-template-columns: 1fr;
    }
    
    .heroe-nosotros__titulo {
        font-size: 24px;
    }
    
    .modal-terminos__contenido {
        max-width: 95%;
    }
}