/* =========================================================
   ROJO CAFÉ
   Sistema visual principal
   Mobile First
   ========================================================= */


/* =========================================================
   VARIABLES
   ========================================================= */

:root {

    --rojo-cafe: #7A0909;
    --rojo-oscuro: #520606;
    --rojo-claro: #941414;

    --dorado: #C99558;
    --dorado-claro: #E0B77A;

    --fondo: #E3D3C6;
    --fondo-claro: #F4ECE6;

    --cafe: #2B211D;
    --cafe-suave: #6B5A52;

    --blanco: #FFFFFF;

    --gris: #8A817C;

    --sombra:
        0 8px 25px rgba(82, 6, 6, 0.12);

    --sombra-fuerte:
        0 12px 35px rgba(82, 6, 6, 0.18);

}


/* =========================================================
   RESET / GENERAL
   ========================================================= */

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {

    margin: 0;

    min-height: 100vh;

    background-color: var(--fondo);

    color: var(--cafe);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    padding-bottom: 90px;

}


/* Evitamos estilos azules de enlaces */

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
}


/* =========================================================
   CONTENEDOR PRINCIPAL
   ========================================================= */

.home-rojo-cafe {

    min-height: calc(100vh - 90px);

    padding-top: 24px;
    padding-bottom: 25px;

}


.home-rojo-cafe .container {

    max-width: 600px;

}


/* =========================================================
   ENCABEZADO DE INICIO
   ========================================================= */

.home-saludo {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    margin-bottom: 28px;

}


.home-buenos-dias {

    display: block;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.4px;

    color: var(--rojo-cafe);

    margin-bottom: 3px;

}


.home-saludo h1 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 32px;

    font-weight: 500;

    line-height: 1.1;

    color: var(--rojo-cafe);

}


.home-saludo p {

    margin: 7px 0 0;

    font-size: 14px;

    color: var(--cafe-suave);

}


/* =========================================================
   BOTÓN PERFIL
   ========================================================= */

.home-perfil {

    width: 44px;
    height: 44px;

    display: flex;

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

    background-color: var(--rojo-cafe);

    color: var(--blanco) !important;

    border-radius: 50%;

    box-shadow:
        0 5px 15px rgba(82, 6, 6, 0.20);

    transition: 0.2s ease;

}


.home-perfil i {

    font-size: 17px;

}


.home-perfil:hover {

    background-color: var(--rojo-oscuro);

    color: var(--blanco) !important;

    transform: translateY(-2px);

}


/* =========================================================
   TARJETA DESTACADA
   ========================================================= */

.home-destacado {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--rojo-cafe),
            var(--rojo-oscuro)
        );

    color: var(--blanco);

    border-radius: 22px;

    padding: 28px 24px;

    margin-bottom: 28px;

    min-height: 185px;

    box-shadow: var(--sombra-fuerte);

}


/* Decoración */

.home-destacado::after {

    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: -70px;
    bottom: -80px;

    border: 1px solid
        rgba(201, 149, 88, 0.35);

    border-radius: 50%;

}


.home-destacado-contenido {

    position: relative;

    z-index: 2;

    max-width: 82%;

}


.home-destacado-etiqueta {

    display: inline-block;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.7px;

    color: var(--dorado-claro);

    margin-bottom: 8px;

}


.home-destacado h2 {

    margin: 0 0 10px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 28px;

    line-height: 1.15;

    font-weight: 500;

}


.home-destacado p {

    margin: 0 0 20px;

    font-size: 14px;

    line-height: 1.5;

    color:
        rgba(255, 255, 255, 0.88);

}


/* =========================================================
   BOTÓN DESTACADO
   ========================================================= */

.home-btn-destacado {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    background-color: var(--dorado);

    color: var(--cafe) !important;

    padding: 10px 17px;

    border-radius: 50px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.4px;

    transition: 0.2s ease;

}


.home-btn-destacado:hover {

    background-color: var(--dorado-claro);

    color: var(--cafe) !important;

    transform: translateX(3px);

}


/* =========================================================
   ICONO DE LA TARJETA
   ========================================================= */

.home-destacado-icono {

    position: absolute;

    right: 25px;
    bottom: 20px;

    width: 65px;
    height: 65px;

    display: flex;

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

    border-radius: 50%;

    background:
        rgba(255,255,255,0.08);

    color: var(--dorado-claro);

}


.home-destacado-icono i {

    font-size: 28px;

}


/* =========================================================
   SECCIONES
   ========================================================= */

.home-seccion {

    margin-bottom: 30px;

}


.home-seccion-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 14px;

}


.home-seccion-header h2 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;

    font-weight: 500;

    color: var(--cafe);

}


.home-seccion-header a {

    font-size: 12px;

    font-weight: 600;

    color: var(--rojo-cafe) !important;

}


.home-seccion-header a:hover {

    color: var(--rojo-oscuro) !important;

}


/* =========================================================
   TARJETA DE PUNTOS
   ========================================================= */

.home-puntos {

    background-color: var(--blanco);

    border-radius: 18px;

    padding: 20px;

    box-shadow: var(--sombra);

}


.home-puntos-superior {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 18px;

}


.home-puntos-label {

    display: block;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    color: var(--cafe-suave);

    margin-bottom: 4px;

}


.home-puntos-numero {

    font-size: 38px;

    font-weight: 700;

    line-height: 1;

    color: var(--rojo-cafe);

}


.home-puntos-icono {

    width: 48px;
    height: 48px;

    display: flex;

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

    background-color: #F7EBDD;

    color: var(--dorado);

    border-radius: 50%;

}


.home-puntos-icono i {

    font-size: 20px;

}


/* =========================================================
   PROGRESO
   ========================================================= */

.home-progreso-info {

    display: flex;

    justify-content: space-between;

    font-size: 11px;

    color: var(--cafe-suave);

    margin-bottom: 7px;

}


.home-progress {

    height: 8px;

    overflow: hidden;

    background-color: #E9E0DA;

    border-radius: 20px;

}


.home-progress .progress-bar {

    background-color: var(--dorado);

    border-radius: 20px;

}


.home-puntos-mensaje {

    margin: 12px 0 0;

    font-size: 12px;

    line-height: 1.5;

    color: var(--cafe-suave);

}


/* =========================================================
   ACCESOS RÁPIDOS
   ========================================================= */

.home-acceso {

    position: relative;

    display: block;

    height: 100%;

    background-color: var(--blanco);

    border-radius: 18px;

    padding: 18px;

    box-shadow: var(--sombra);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;

}


.home-acceso:hover {

    color: var(--cafe);

    transform: translateY(-3px);

    box-shadow: var(--sombra-fuerte);

}


.home-acceso-icono {

    width: 42px;
    height: 42px;

    display: flex;

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

    background-color: #F7EBDD;

    color: var(--rojo-cafe);

    border-radius: 12px;

    margin-bottom: 13px;

}


.home-acceso-icono i {

    font-size: 18px;

}


.home-acceso h3 {

    margin: 0 0 5px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 19px;

    font-weight: 500;

    color: var(--rojo-cafe);

}


.home-acceso p {

    margin: 0;

    padding-right: 8px;

    font-size: 12px;

    line-height: 1.5;

    color: var(--cafe-suave);

}


.home-acceso-flecha {

    display: block;

    margin-top: 14px;

    color: var(--rojo-cafe);

    font-size: 13px;

}


/* =========================================================
   PROMOCIÓN
   ========================================================= */

.home-promocion {

    display: flex;

    align-items: center;

    gap: 14px;

    position: relative;

    background-color: var(--rojo-cafe);

    color: var(--blanco);

    padding: 18px;

    border-radius: 18px;

    box-shadow: var(--sombra);

}


.home-promocion-icono {

    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: flex;

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

    background-color:
        rgba(255,255,255,0.10);

    color: var(--dorado-claro);

    border-radius: 50%;

}


.home-promocion-icono i {

    font-size: 19px;

}


.home-promocion span {

    display: block;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: var(--dorado-claro);

    margin-bottom: 3px;

}


.home-promocion h2 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    line-height: 1.25;

    font-weight: 500;

}


.home-promocion-flecha {

    margin-left: auto;

    color: var(--dorado-claro);

    font-size: 14px;

}


/* =========================================================
   NAVBAR INFERIOR
   ========================================================= */

.navbar-rojo-cafe {

    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1000;

    height: 72px;

    display: flex;

    align-items: center;

    justify-content: space-around;

    padding:
        4px 8px;

    background-color: var(--rojo-cafe);

    box-shadow:
        0 -6px 20px
        rgba(82, 6, 6, 0.25);

}


/* =========================================================
   ITEMS NAVBAR
   ========================================================= */

.navbar-rojo-cafe .nav-item {

    position: relative;

    flex: 1;

    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

    color:
        rgba(255,255,255,0.70) !important;

    text-decoration: none !important;

    transition:
        color 0.2s ease,
        transform 0.2s ease;

}


.navbar-rojo-cafe .nav-item:hover {

    color: var(--blanco) !important;

}


/* =========================================================
   ICONOS NAVBAR
   ========================================================= */

.navbar-rojo-cafe .nav-item i {

    display: block;

    font-size: 19px;

    line-height: 1;

    color: inherit;

}


/* =========================================================
   TEXTO NAVBAR
   ========================================================= */

.navbar-rojo-cafe .nav-item small {

    display: block;

    font-size: 10px;

    font-weight: 500;

    line-height: 1;

    color: inherit;

}


/* =========================================================
   ITEM ACTIVO
   ========================================================= */

.navbar-rojo-cafe .nav-item.active {

    color: var(--blanco) !important;

}


.navbar-rojo-cafe .nav-item.active i {

    color: var(--blanco) !important;

}


.navbar-rojo-cafe .nav-item.active small {

    color: var(--blanco) !important;

}


/* Indicador dorado */

.navbar-rojo-cafe .nav-item.active::before {

    content: "";

    position: absolute;

    top: 0;

    left: 50%;

    transform: translateX(-50%);

    width: 30px;

    height: 3px;

    background-color: var(--dorado);

    border-radius:
        0 0 5px 5px;

}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 768px) {

    body {

        padding-bottom: 30px;

    }


    .home-rojo-cafe {

        padding-top: 40px;

        padding-bottom: 50px;

    }


    .home-rojo-cafe .container {

        max-width: 680px;

    }


    .home-saludo h1 {

        font-size: 38px;

    }


    .home-destacado {

        padding: 34px;

        min-height: 205px;

    }


    .home-destacado h2 {

        font-size: 32px;

    }


    /* Navbar flotante */

    .navbar-rojo-cafe {

        max-width: 620px;

        left: 50%;
        right: auto;

        transform: translateX(-50%);

        bottom: 20px;

        height: 68px;

        border-radius: 20px;

        padding: 5px 15px;

        box-shadow:
            0 10px 35px
            rgba(82, 6, 6, 0.30);

    }

}


/* =========================================================
   MÓVILES PEQUEÑOS
   ========================================================= */

@media (max-width: 380px) {

    .home-rojo-cafe .container {

        padding-left: 18px;
        padding-right: 18px;

    }


    .home-saludo h1 {

        font-size: 28px;

    }


    .home-destacado {

        padding: 24px 20px;

    }


    .home-destacado h2 {

        font-size: 24px;

    }


    .home-destacado-icono {

        right: 15px;
        bottom: 15px;

        width: 52px;
        height: 52px;

    }


    .home-acceso {

        padding: 15px;

    }


    .home-acceso h3 {

        font-size: 17px;

    }

}