/* Importación de Montserrat (Títulos) e Inter (Cuerpo) */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --morado: #662483;
    --azul: #36A9E1;
    --blanco: #ffffff;
    --oscuro: #121212;
    --gris: #f4f4f4;
    --morado-dark: #2a0f36; /* Versión profunda del morado */
    --azul-dark: #103243;   /* Versión profunda del azul */
    --negro-profundo: #0f0a14;
    
    /* Tipografías */
    --font-titulos: 'Montserrat', sans-serif;
    --font-cuerpo: 'Inter', sans-serif;
    
    /* Breakpoints */
    --mobile: 480px;
    --tablet: 768px;
    --desktop: 1024px;
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    font-family: var(--font-cuerpo); /* Inter por defecto */
    -webkit-font-smoothing: antialiased; /* Suavizado de fuente para Mac/iOS */
    -moz-osx-font-smoothing: grayscale;
}

html { 
    scroll-behavior: smooth; 
}

/* Títulos con Montserrat */
h1, h2, h3, h4, .hero-badge, .btn-primary-premium, .btn-outline-premium {
    font-family: var(--font-titulos);
    letter-spacing: -0.02em; /* Un toque de tracking negativo hace que se vea más pro */
}

.container { width: 90%; max-width: 1200px; margin: auto; padding: 60px 0; }

/** - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
** -- NAV BAR
** - - - - - - -  - - - - - - - -  - - - - - - - -  - - - - - - - - - - - - - - - - - **/
/* Navbar con degradado Dark */
.navbar { 
    background: linear-gradient(135deg, var(--morado-dark) 0%, var(--azul-dark) 100%);
    padding: 12px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Sutil línea para definir el borde */
}

.flex-nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 5%; 
}

/* Ajuste de tamaño del Logo SVG */
.nav-logo {
    height: 50px; /* Ajusta según prefieras el tamaño del logo */
    width: auto;
    display: block;
}

/* Botón de navegación optimizado para fondo oscuro */
.btn-nav { 
    background: var(--azul); 
    color: white; 
    padding: 10px 24px; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.btn-nav:hover {
    background: var(--blanco);
    color: var(--morado);
    transform: translateY(-2px);
}

/** - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
** -- HERO
** - - - - - - -  - - - - - - - -  - - - - - - - -  - - - - - - - - - - - - - - - - - **/
.hero { 
    background-color: var(--negro-profundo);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(102, 36, 131, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(54, 169, 225, 0.15) 0%, transparent 40%);
    color: white;
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 80vh; /* Un poco más alto para mayor impacto */
}

/* Efecto de puntos sutiles (Reemplaza los rombos) */
.hero-dots {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

/* Luces de ambiente */
.hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    background: radial-gradient(circle, var(--morado-dark) 0%, transparent 70%);
    opacity: 0.5;
    filter: blur(80px);
}

.hero-content { 
    position: relative; 
    z-index: 5; 
}

.hero-badge {
    background: rgba(255, 255, 255, 0.05);
    color: var(--azul);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(54, 169, 225, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
}

.hero h1 { 
    font-family: var(--font-titulos);
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* Se adapta al tamaño de pantalla */
    line-height: 1; 
    margin-bottom: 25px; 
    font-weight: 900; 
    letter-spacing: -2px;
}

.hero h1 span { 
    background: linear-gradient(90deg, var(--azul), #8bd5f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p { 
    font-size: 1.25rem; 
    max-width: 650px; 
    margin: 0 auto 45px; 
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* BOTONES MEJORADOS */
.hero-btns { display: flex; justify-content: center; gap: 15px; }

.btn-primary-premium {
    background: var(--azul);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(54, 169, 225, 0.2);
}

.btn-primary-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(54, 169, 225, 0.4);
    background: #4ab9f1;
}

.btn-outline-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.btn-outline-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-5px);
}

/* --- RESPONSIVE HERO --- */

/* Tablets y pantallas medianas */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 2.8rem; /* Ajuste manual por si el clamp no es suficiente */
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

/* Celulares (Mobile First / Small Screens) */
@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
        min-height: 90vh; /* Más alto en móvil para ocupar la pantalla */
    }

    .hero-content {
        width: 95%;
        margin: 0 auto;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 15px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    /* Cambio clave: Botones en columna */
    .hero-btns {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }

    .btn-primary-premium, 
    .btn-outline-premium {
        width: 100%; /* Botones de ancho completo para facilitar el clic con el pulgar */
        justify-content: center;
        padding: 16px;
    }

    /* Reducimos el brillo de fondo para que no canse la vista en pantallas pequeñas */
    .hero-glow {
        opacity: 0.3;
    }
}













/** - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
** -- QUIENES SOMOS
** - - - - - - -  - - - - - - - -  - - - - - - - -  - - - - - - - - - - - - - - - - - **/

.about {
    padding: 120px 0;
    background: var(--negro-profundo);
    font-family: var(--font-cuerpo);
    position: relative;
    overflow: hidden;
}

/* Encabezado Centrado y Elegante */
.about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.about-header h2 {
    font-family: var(--font-titulos);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: white;
    font-weight: 800;
    margin: 20px 0;
    line-height: 1.1;
}

.about-header h2 span {
    background: linear-gradient(90deg, var(--azul), #8bd5f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-description {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-description p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.small-text {
    margin-top: 15px;
    font-size: 0.95rem !important;
    color: var(--azul) !important;
    font-style: italic;
    opacity: 0.8;
}

/* Grid Tipo Bento (3 columnas) */
.about-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mini-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.mini-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--azul);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(54, 169, 225, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(54, 169, 225, 0.2);
}

.badge-mini {
    display: inline-block;
    font-family: var(--font-titulos);
    color: var(--azul);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px; /* Espaciado mayor para look de lujo */
    
    /* Fondo sutil y bordes */
    background: rgba(54, 169, 225, 0.1); /* Azul muy transparente */
    padding: 8px 16px;
    border-radius: 50px; /* Forma de píldora */
    border: 1px solid rgba(54, 169, 225, 0.3);
    
    /* Efecto de brillo sutil */
    backdrop-filter: blur(5px);
    margin-bottom: 20px;
    
    /* Animación suave al cargar o al pasar el mouse */
    transition: all 0.3s ease;
}

.badge-mini:hover {
    background: rgba(54, 169, 225, 0.2);
    border-color: var(--azul);
    transform: translateY(-2px);
}

.icon-box i {
    font-size: 2rem;
    color: var(--azul);
}

.mini-card-info h3 {
    font-family: var(--font-titulos);
    color: white;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.mini-card-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .about-bento {
        grid-template-columns: 1fr; /* Una columna en móvil */
    }
    
    .about-header h2 {
        font-size: 2.2rem;
    }
}
/* --- RESPONSIVE ABOUT --- */

/* Tablets */
@media (max-width: var(--tablet)) {
    .about {
        padding: 80px 0;
    }

    .about-header {
        margin-bottom: 50px;
    }

    .about-header h2 {
        font-size: 2.2rem; /* Reducción de tamaño para tablet */
    }

    .about-description p {
        font-size: 1.1rem;
    }
}

/* Celulares (Mobile) */
@media (max-width: var(--mobile)) {
    .about {
        padding: 60px 0;
    }

    /* Reducción de Badge para no ocupar tanto espacio vertical */
    .badge-mini {
        font-size: 0.65rem;
        padding: 6px 12px;
        letter-spacing: 1.5px;
    }

    .about-header {
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .about-header h2 {
        font-size: 1.8rem; /* Tamaño optimizado para celular */
        line-height: 1.2;
    }

    .about-description p {
        font-size: 1rem; /* Texto más pequeño y legible */
        line-height: 1.5;
    }

    .small-text {
        font-size: 0.85rem !important;
    }

    /* Ajuste de la cuadrícula Bento */
    .about-bento {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    /* Tarjetas más compactas en móvil */
    .mini-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .icon-box i {
        font-size: 1.5rem;
    }

    .mini-card-info h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .mini-card-info p {
        font-size: 0.9rem;
    }
}












/** - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
** -- PRECIOS
** - - - - - - -  - - - - - - - -  - - - - - - - -  - - - - - - - - - - - - - - - - - **/

.pricing { 
    background: var(--negro-profundo); 
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: var(--font-titulos);
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-title h2 span { color: var(--azul); }

.pricing-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); 
    gap: 30px; 
    align-items: start;
}

/* Tarjeta Estándar */
.card { 
    background: rgba(255, 255, 255, 0.03); 
    padding: 40px 30px; 
    border-radius: 24px; 
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center; 
    position: relative; 
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(54, 169, 225, 0.5);
}

/* Tarjeta Destacada (Estándar) */
.card.featured { 
    background: linear-gradient(145deg, var(--morado-dark) 0%, var(--negro-profundo) 100%);
    border: 2px solid var(--azul);
    box-shadow: 0 20px 40px rgba(54, 169, 225, 0.15);
    z-index: 2;
}

.recommended { 
    position: absolute; 
    top: -15px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: var(--azul); 
    color: white; 
    padding: 6px 20px; 
    border-radius: 50px; 
    font-size: 0.75rem; 
    font-weight: 800; 
    font-family: var(--font-titulos);
    letter-spacing: 1px;
}

.card h3 {
    font-family: var(--font-titulos);
    font-weight: 800;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.price { 
    font-size: 2.8rem; 
    font-weight: 900; 
    margin: 25px 0; 
    color: white; 
    font-family: var(--font-titulos);
}

.price span { font-size: 1rem; color: rgba(255, 255, 255, 0.5); font-weight: 400; }

.target { 
    color: var(--azul); 
    font-size: 0.9rem; 
    font-weight: 600;
    min-height: 40px;
}

.card ul { 
    list-style: none; 
    text-align: left; 
    margin-bottom: 35px; 
    padding: 0;
}

.card ul li { 
    margin-bottom: 15px; 
    font-size: 0.95rem; 
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card ul li i { color: var(--azul); font-size: 1.2rem; }
.card.featured ul li i { color: var(--azul); }

/* Botones dentro de cards */
.btn-pricing { 
    display: block; 
    background: rgba(255, 255, 255, 0.05);
    color: white; 
    padding: 15px; 
    text-decoration: none; 
    font-weight: 700; 
    border-radius: 12px; 
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    font-family: var(--font-titulos);
}

.btn-pricing:hover {
    background: white;
    color: var(--negro-profundo);
}

.btn-pricing-featured { 
    display: block; 
    background: var(--azul); 
    color: white; 
    padding: 16px; 
    text-decoration: none; 
    font-weight: 800; 
    border-radius: 12px; 
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(54, 169, 225, 0.3);
    font-family: var(--font-titulos);
}

.btn-pricing-featured:hover {
    transform: scale(1.03);
    background: #4ab9f1;
}

/* --- RESPONSIVE PRICING --- */

/* Tablets y Laptops pequeñas */
@media (max-width: var(--tablet)) {
    .pricing {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .pricing-grid {
        /* Bajamos a 2 columnas en tablets para que no se vean apretadas */
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px;
    }

    /* Quitamos el escalado excesivo en tablets para evitar solapamientos */
    .card.featured {
        transform: scale(1.02);
    }
}

/* Celulares (Mobile) */
@media (max-width: var(--mobile)) {
    .pricing {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .pricing-grid {
        /* Una sola columna: lectura vertical pura */
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }

    .card {
        padding: 35px 25px;
    }

    /* Reset del escalado en móvil: aquí no queremos que una sea más grande */
    .card.featured {
        transform: none;
        box-shadow: 0 10px 30px rgba(54, 169, 225, 0.1);
    }

    .card.featured:hover {
        transform: translateY(-5px);
    }

    .price {
        font-size: 2.4rem; /* Un poco más pequeña para evitar desbordes */
        margin: 20px 0;
    }

    .card h3 {
        font-size: 1.2rem;
    }

    .target {
        min-height: auto; /* Ya no necesitamos igualar alturas en vertical */
        margin-bottom: 20px;
    }

    .card ul {
        margin-bottom: 30px;
    }

    .card ul li {
        font-size: 0.9rem; /* Fuente más compacta para que no ocupen 2 líneas */
    }

    /* Botones de acción fáciles de tocar */
    .btn-pricing, .btn-pricing-featured {
        padding: 18px;
        font-size: 1rem;
    }
}



















.addons {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--negro-profundo), #1a1420);
}

.addons-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-top: -15px;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas en PC */
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.addon-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.addon-card:hover {
    background: rgba(54, 169, 225, 0.05);
    border-color: var(--azul);
    transform: scale(1.02);
}

.addon-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.addon-content i {
    font-size: 1.8rem;
    color: var(--azul);
    background: rgba(54, 169, 225, 0.1);
    padding: 12px;
    border-radius: 12px;
}

.addon-info h4 {
    color: white;
    font-family: var(--font-titulos);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.addon-info p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0;
}

.addon-price {
    font-family: var(--font-titulos);
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    text-align: right;
    min-width: 110px;
}

.addon-price span {
    display: block;
    font-size: 0.7rem;
    color: var(--azul);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: -5px;
}

.disclaimer {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    margin-top: 40px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .addons-grid {
        grid-template-columns: 1fr; /* 1 columna en móvil */
    }
    
    .addon-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .addon-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .addon-price {
        text-align: center;
    }
}


/* --- RESPONSIVE ADDONS --- */

/* Tablets */
@media (max-width: var(--tablet)) {
    .addons {
        padding: 60px 0;
    }

    .addons-grid {
        grid-template-columns: 1fr; /* Una sola columna para evitar textos comprimidos */
        padding: 0 20px;
        gap: 15px;
    }

    .addon-card {
        padding: 20px;
    }
}

/* Celulares (Mobile) */
@media (max-width: var(--mobile)) {
    .addons {
        padding: 40px 0 60px;
    }

    .addons-subtitle {
        font-size: 0.95rem;
        margin-bottom: 35px;
        padding: 0 15px;
    }

    .addon-card {
        /* En lugar de centrar todo bruscamente, mantenemos una estructura compacta */
        flex-direction: row; 
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        border-radius: 12px;
    }

    .addon-content {
        gap: 12px;
        text-align: left;
    }

    .addon-content i {
        font-size: 1.4rem;
        padding: 8px;
        border-radius: 10px;
    }

    .addon-info h4 {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .addon-info p {
        font-size: 0.75rem;
        line-height: 1.2;
        max-width: 150px; /* Evita que el texto choque con el precio */
    }

    .addon-price {
        font-size: 1.1rem;
        min-width: 80px;
        line-height: 1;
    }

    .addon-price span {
        font-size: 0.6rem;
    }

    .disclaimer {
        margin-top: 30px;
        font-size: 0.75rem;
        padding: 0 20px;
    }
}











.notes {
    padding: 60px 0;
    background: var(--negro-profundo);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.notes-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.note-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.note-box:hover {
    transform: translateY(-5px);
}

.note-icon {
    background: rgba(102, 36, 131, 0.1); /* Fondo morado suave */
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(102, 36, 131, 0.2);
}

.note-icon i {
    font-size: 1.5rem;
    color: var(--morado);
}

.note-content h5 {
    font-family: var(--font-titulos);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.note-content p {
    font-family: var(--font-cuerpo);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Responsive para emprendedores que ven desde el celular */
@media (max-width: 992px) {
    .notes-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .note-box {
        background: rgba(255, 255, 255, 0.02);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
}













.main-footer {
    background: var(--negro-profundo);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-cuerpo);
    position: relative; 
    z-index: 2000; /* Superior al 1000 del botón */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 !important; /* Reset del padding del container para el footer */
}

.footer-copy p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-copy span {
    color: var(--azul);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* REDES SOCIALES */
.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: white;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Efectos individuales por red social */
.social-link.tiktok:hover {
    background: #000;
    color: #ff0050;
    border-color: #00f2ea;
    box-shadow: 0 0 15px rgba(0, 242, 234, 0.3);
    transform: translateY(-5px) rotate(-5deg);
}

.social-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(214, 36, 159, 0.4);
    transform: translateY(-5px) scale(1.1);
}

.social-link.facebook:hover {
    background: #1877F2;
    color: white;
    border-color: #1877F2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.4);
    transform: translateY(-5px) rotate(5deg);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
}






















/** - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
** -- WHATSAPP FLOTANTE
** - - - - - - -  - - - - - - - -  - - - - - - - -  - - - - - - - - - - - - - - - - - **/

/* WhatsApp Flotante con Animación */
.wsp-float { 
    position: fixed; 
    bottom: 25px; /* Un poco más de aire */
    right: 25px; 
    background: #25d366; 
    color: white; 
    padding: 12px 25px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 700; 
    font-family: var(--font-titulos);
    display: flex; 
    align-items: center; 
    gap: 12px; 
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3); 
    z-index: 1000; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 

    /* Animación de pulso infinita */
    animation: wsp-pulse 2s infinite;
}

.wsp-float i {
    font-size: 1.5rem;
}

.wsp-float:hover { 
    transform: scale(1.05) translateY(-5px); 
    background: #20ba5a;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    animation: none; /* Se detiene el pulso al interactuar */
}

/* Keyframes para el efecto de onda/pulso */
@keyframes wsp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- RESPONSIVE BOTÓN --- */
@media (max-width: var(--mobile)) {
    .wsp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
    }
    
    /* En móviles muy pequeños podemos ocultar el texto y dejar solo el icono si fuera necesario */
    .wsp-float span {
        font-size: 0.9rem;
    }
}