/* =========================================
   ESTILOS DE LA LANDING PAGE (Turnea)
   ========================================= */
body {
    background-color: #f8fafc;
    /* Color base clarito */
    background-image: radial-gradient(rgba(59, 130, 246, 0.20) 1px, transparent 1px);
    background-size: 24px 24px;
    background-attachment: fixed;
    overflow-x: hidden;
    width: 100%;
    /* Esto hace que los puntos queden fijos al scrollear */
}

/* NAVEGACIÓN (Glassmorphism) */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* AURORA BACKGROUNDS (GIVING LIFE) */
.aurora-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
}
.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: aurora-flow 15s ease-in-out infinite alternate;
}
.blob-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: rgba(59, 130, 246, 0.4); }
.blob-2 { top: 40%; right: -20%; width: 60vw; height: 60vw; background: rgba(0, 255, 102, 0.2); animation-delay: -5s; }
.blob-3 { bottom: -20%; left: 20%; width: 55vw; height: 55vw; background: rgba(139, 92, 246, 0.3); animation-delay: -10s; }

@keyframes aurora-flow {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10%, 15%) scale(1.1); }
    100% { transform: translate(-10%, -10%) scale(0.9); }
}

.logo {
    font-size: 26px;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a.link-texto {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 15px;
    transition: 0.2s;
}

.nav-links a.link-texto:hover {
    color: var(--primary);
}

/* HERO SECTION (El fondo animado lo hereda de global.css) */
header.hero {
    position: relative;
    text-align: center;
    padding: 100px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: auto;
}

/* RESPLANDOR SUPERIOR MÁS INTENSO */
header.hero::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    height: 70vh;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
    animation: respirar 8s ease-in-out infinite;
}

h1.titulo-gigante {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    max-width: 900px;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #1e293b 0%, var(--primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 650px;
    line-height: 1.6;
}

.tags-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
    border: 1px solid var(--border-strong);
}

/* SECCIÓN BENEFICIOS - STATEMENT BLOCKS (MINIMALISMO EXAGERADO) */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    padding: 40px 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.statement-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.statement-block:hover {
    transform: translateY(-5px);
}

.statement-icon {
    font-size: 140px !important;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 0;
    transform: rotate(-10deg);
}

.statement-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.statement-text {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }
}

/* SECCIÓN PRECIOS */
.pricing {
    padding: 40px 5% 100px 5%;
    text-align: center;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
    pointer-events: none;
}

.pricing h2 {
    color: var(--text-main);
    font-size: 2.8rem;
    margin-bottom: 60px;
    font-weight: 800;
    letter-spacing: -1px;
}

.price-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.price-card {
    background: var(--bg-card);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-strong);
    padding: 50px 40px;
    border-radius: 28px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.price-card.destacado {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
}

.price-card h3 {
    font-size: 1.6rem;
    color: var(--text-main);
    margin: 0;
    font-weight: 700;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 20px 0;
    letter-spacing: -1px;
}

.price span {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ELIMINAR LOS PUNTOS DE LISTA */
.price-card ul {
    list-style: none;
    /* Esto quita los puntos negros */
    text-align: left;
    margin: 0 0 40px 0;
    padding: 0;
    flex-grow: 1;
    /* Empuja el botón hacia abajo para que todos midan lo mismo */
}

.price-card ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.price-card ul li .material-icons {
    position: absolute;
    left: 0;
    color: var(--success);
    font-size: 20px;
}

/* MEGA FOOTER ESTILO SAAS */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-strong);
    padding-top: 60px;
}

.subtexto-mail {
    margin-left: 26px;
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--text-main);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-strong);
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 13px;
}

/* Ajuste para el logo en la navegación */
.nav-logo {
    height: 25px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
    margin: 0;
}

.footer-logo {
    height: 20px;
    /* Un poco más grande para que destaque sobre el texto muted */
    width: auto;
    margin-top: 25px;
    margin-left: 5px;
    display: block;
}

.nav-logo:hover {
    transform: scale(1.05);
    /* Efecto sutil al pasar el mouse */
}

/* Contenedor del logo para asegurar alineación */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-col {
    display: flex;
    flex-direction: column;
    /* Alinea todos los hijos al inicio (izquierda) para que coincidan con el texto */
    align-items: flex-start;
}

.footer-logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    /* Asegura que empiece en el mismo borde que el texto */
    margin-bottom: 15px;
}

.footer-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    max-width: 250px;
    /* Refuerza la alineación izquierda */
}

/* =========================================
   ANIMACIONES Y DECORACIONES SUTILES
   ========================================= */

/* Animación del resplandor de fondo */
@keyframes respirar {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.4;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.4;
    }
}

/* Diseño de las insignias flotantes */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    pointer-events: none;
    /* Para que no molesten si les hacés clic encima */
    animation: flotar 6s ease-in-out infinite;
    z-index: 0;
}

/* Posiciones (Juegan con el espacio vacío) */
.badge-left {
    top: 25%;
    left: 10%;
    animation-delay: 0s;
}

.badge-right {
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
}

.badge-price-left {
    top: 15%;
    left: 8%;
    animation-delay: 1.5s;
}

.badge-price-right {
    bottom: 25%;
    right: 5%;
    animation-delay: 4.5s;
}

/* Sube y baja a destiempo */

@keyframes flotar {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* NAVEGACIÓN MOBILE TOGGLE */
.menu-toggle {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 5px;
    align-items: center;
    justify-content: center;
}

.menu-toggle .material-icons {
    font-size: 28px;
    color: var(--text-main);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    h1.titulo-gigante {
        font-size: 2.5rem;
    }

    .nav-logo {
        height: 15px;
        width: auto;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        padding: 25px 20px 35px 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a.link-texto {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        font-size: 16px;
    }

    .nav-links .btn-outline {
        width: 100%;
        text-align: center;
        margin-left: 0 !important;
        margin-top: 10px;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 700;
        border-radius: 14px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .price-card.destacado {
        transform: scale(1);
    }

    .floating-badge {
        display: none !important;
    }

    .subtexto-mail {
        margin-left: 0;
    }

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

    .footer-col {
        align-items: center;
    }

    .footer-logo-wrapper,
    .footer-col ul li a {
        justify-content: center;
    }

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

/* METRIX ADDON - EXAGGERATED MINIMALISM */
.metrix-statement-container {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.metrix-statement-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: -3px;
    color: #00ff66;
    line-height: 0.9;
    font-family: 'Syncopate', sans-serif;
    text-shadow: 0 10px 40px rgba(0,255,102,0.15);
    margin-bottom: 20px;
}

.metrix-statement-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1px;
    margin-bottom: 80px;
    max-width: 800px;
}

.metrix-item {
    margin-bottom: 40px;
    max-width: 800px;
    width: 100%;
    transition: transform 0.3s ease;
    padding: 20px;
}

.metrix-item:hover {
    transform: scale(1.02);
}

.metrix-item-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.metrix-item-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    line-height: 1.6;
}