/* ============================================================
   ESTILOS GLOBALES
   ============================================================ */
body {
    background-color: var(--color-bg-light);
    font-family: 'Arial', sans-serif;
    color: var(--color-text);
}

/* ============================================================
   TITULOS PRINCIPALES
   ============================================================ */
.title-login {
    font-size: 42px;
    font-weight: bold;
    color: var(--color-primary);
    line-height: 1.1;
}

.title-section {
    font-size: 32px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.title-small {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-dark);
}

/* ============================================================
   SUBTITULOS Y TEXTOS SECUNDARIOS
   ============================================================ */
.subtitle-login {
    font-size: 16px;
    color: var(--color-black);
    margin-bottom: 25px;
    line-height: 1.4;
}

.subtitle {
    font-size: 15px;
    color: var(--color-gray);
}

.text-accent {
    color: var(--color-primary) !important;
}

.text-muted-nubelle {
    color: var(--color-gray-soft) !important;
}

/* ============================================================
   INPUTS CON ICONOS
   ============================================================ */
.input-custom {
    background: var(--color-bg-soft) !important;
    border: none !important;
    border-bottom: 2px solid var(--color-primary) !important;
    font-size: 16px;
    padding: 14px;
    border-radius: 0 !important;
    color: var(--color-dark) !important;
}

.input-group-text {
    background: var(--color-bg-soft) !important;
    border: none !important;
    border-bottom: 2px solid var(--color-primary) !important;
    border-radius: 0 !important;
    font-size: 18px;
    color: var(--color-primary) !important;
}

/* ============================================================
   BOTONES
   ============================================================ */
.btn-nubelle {
    background: var(--color-primary);
    color: var(--color-black);
    padding: 14px;
    font-weight: bold;
    border: none;
    width: 100%;
    border-radius: 6px;
    transition: .2s;
}

.btn-nubelle:hover {
    background: var(--color-warm);
}

/* ============================================================
   LINKS / ACCIONES
   ============================================================ */
.link-action {
    text-decoration: none;
    font-weight: bold;
    color: var(--color-primary);
    transition: 0.2s;
}

.link-action:hover {
    color: var(--color-warm);
}

/* ============================================================
   SECCIONES Y CONTENEDORES
   ============================================================ */
.section-box {
    background: var(--color-white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.section-box-soft {
    background: var(--color-bg-soft);
    padding: 20px;
    border-radius: 12px;
}

/* ============================================================
   BANNER LOGIN (imagen a la derecha)
   ============================================================ */
.banner-login {
    background-image: url('https://nubelleperu.pe/wp-content/uploads/2025/07/elle.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
}


/* AVATAR SOLO EN MÓVIL */
.login-avatar .avatar-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--color-primary);
    background: var(--color-white);
    padding: 4px;
}

/* En desktop NO se muestra nunca */
@media (min-width: 768px) {
    .login-avatar {
        display: none !important;
    }
}

/* En móvil se muestra centrado */
@media (max-width: 767px) {
    .login-avatar {
        display: block !important;
    }
}


.dashboard-wrapper {
    max-width: 80vw;
    margin: auto;
}



    .dashboard-title {
        font-size: 40px;
        font-weight: bold;
        margin-bottom: 10px;
        color: var(--color-dark);
    }

    .dashboard-name {
        font-size: 28px;
        font-weight: bold;
        color: var(--color-dark);
    }

    .data-label {
        font-size: 14px;
        color: var(--color-gray-dark);
        text-transform: uppercase;
    }

    .data-value {
        font-size: 26px;
        font-weight: bold;
        color: var(--color-dark);
    }

    .divider {
        border-left: 2px solid var(--color-gray-soft);
        height: 70px;
        margin: auto 25px;
    }

    .btn-pedido {
        background: var(--color-secondary);
        border: none;
        padding: 12px 30px;
        font-weight: bold;
        border-radius: 6px;
        transition: .2s;
        color: var(--color-black);
    }

    .btn-pedido:hover {
        background: var(--color-warm);
    }


/* GRID PRINCIPAL DEL HEADER */
.dashboard-header {
    display: grid;
    grid-template-columns: 1fr auto;   /* izquierda | derecha */
    align-items: center;               /* centra verticalmente */
    gap: 40px;
    margin-top: 40px;
}

/* ESTILOS BLOQUE IZQUIERDA */
.title-block .hola {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 5px;
}

.title-block .nombre {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

/* BLOQUE DERECHA */
.action-block {
    text-align: right;
}

/* Botón */
.btn-pedido {
    background: #f4b332;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
}

/* Puntos */
.puntos-box {
    margin-top: 10px;
}

.puntos-num {
    font-size: 28px;
    border: 2px solid #222;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 700;
}

.full-height-row {
    min-height: 100vh;
    height: 100vh;
}

.video-wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden; /* recorta el exceso del video */
}

.video-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%; /* zoom opcional */
    height: auto;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .dashboard-header {
        grid-template-columns: 1fr;
        text-align: left !important;
    }

    .action-block {
        text-align: left !important;
        margin-top: 20px;
    }
}

