/* ==========================================
   HOME - COMING SOON (Próximamente)
   🌐 Página pública temporal
========================================== */

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #ffffff;
    background: #000;
}

/* =========================
   NAVBAR PUBLICA (TRANSPARENTE)
========================= */
.home-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;

    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.15)
    );

    backdrop-filter: blur(6px);
}

.home-navbar__logo-img {
    height: 38px;
    width: auto;
}

.home-navbar__actions {
    display: flex;
    align-items: center;
}

/* BOTÓN LOGIN */
.home-login-btn {
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    border: 1px solid rgba(255,255,255,0.35);
    background: transparent;

    transition: all 0.3s ease;
}

.home-login-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: #ffffff;
}

/* =========================
   HERO FULL SCREEN
========================= */
.hero {
    min-height: 100vh;
    background-image:
        linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.55)
        ),
        url('../../img/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 64px;
}

.hero-content {
    animation: fadeUp 2.4s ease forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    max-width: 420px;
    width: 100%;
    margin: 0;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #0038FF, #FF0000);
    margin: 14px 0 12px 0;
    border-radius: 4px;
}

.hero h2 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 4px;
    margin: 0;
    opacity: 0.95;
}

/* =========================
   FOOTER
========================= */
footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* =========================
   SOCIAL FLOATING
========================= */
.social-floating {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    gap: 14px;
    z-index: 1200;
}

.social-floating a {
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    font-size: 18px;

    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.social-floating a:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.15);
    border-color: #ffffff;
}

/* =========================
   ANIMACIONES
========================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .home-navbar {
        padding: 0 20px;
    }

    .home-navbar__logo-img {
        height: 32px;
    }

    .hero-logo {
        max-width: 260px;
    }

    .hero h2 {
        font-size: 16px;
    }
}
