/* =========================================================
   HOME
========================================================= */

.home-page {
    position: relative;
    min-height: calc(100vh - 60px);
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    overflow: hidden;
    background: radial-gradient( ellipse 700px 450px at 50% 38%, rgba(37, 99, 235, 0.10),  transparent 70%), #ffffff;
}



/* luz azul superior */

.home-page::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    top: -220px;
    left: -180px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.18);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}


/* luz violeta inferior */

.home-page::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -180px;
    bottom: -220px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.20);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}


/* garante que todo o conteúdo fique na frente */

.home-page .home-hero,
.home-page .home-user-card,
.home-page .home-bottom {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HERO
========================================================= */

.home-hero {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: homeEntrada .9s ease both;
}


/* =========================================================
   LOGO
========================================================= */
.home-logo-container {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.home-logo-hotel {
    max-width: 155px;
    max-height: 155px;
    object-fit: contain;
    filter: drop-shadow(0 12px 25px rgba(0, 0, 0, .15));
}


/* =========================================================
   TEXTO
========================================================= */
.home-welcome {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #64748b;
    margin-bottom: 14px;
}
.home-content h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 800;
    font-family: 'Cormorant Garamond', Georgia, serif;
    letter-spacing: -2px;
    line-height: 1;
    color: #172033;
    text-transform: uppercase;
}
.home-divider {
    width: 115px;
    height: 3px;
    margin: 20px auto;
    border-radius: 10px;
    background: #2563eb;
}
.home-frase {
    margin: 0;
    max-width: 650px;
    font-size: clamp(18px, 2vw, 25px);
    font-weight: 300;
    font-style: italic;
    color: #64748b;
    line-height: 1.5;
}


/* =========================================================
   CARD DO USUÁRIO
========================================================= */
.home-user-card {
    position: relative;
    z-index: 3;
    margin-top: 40px;
    width: min(700px, 100%);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border: 1px solid rgba(148, 163, 184, .28);
    border-radius: 18px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 45px rgba(15,23,42,.08);
    animation: homeEntrada .9s .15s ease both;

}
.home-user-photo {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}
.home-user-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(37,99,235,.3);
}
.home-user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}
.home-user-saude {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #94a3b8;
}
.home-user-info strong {
    font-size: 18px;
    color: #172033;
    margin-top: 2px;
}
.home-user-info small {
    font-size: 12px;
    color: #64748b;
}
.home-date {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
    border-left: 1px solid #e2e8f0;
}
.home-date i {
    font-size: 18px;
    color: #2563eb;
}
.home-date div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.home-date span {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #94a3b8;
}
.home-date strong {
    font-size: 11px;
    color: #475569;
    text-transform: capitalize;
}
.home-localizacao {
    margin-top: 18px;
    color: #94a3b8;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.home-localizacao i {
    color: #2563eb;
}
.home-localizacao span {
    font-size: 15px;
}
/* =========================================================
   RODAPÉ
========================================================= */

.home-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    color: #94a3b8;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: homeEntrada .9s .3s ease both;
}


.home-line {
    width: 45px;
    height: 1px;
    background: #cbd5e1;
}


/* =========================================================
   ANIMAÇÃO
========================================================= */

@keyframes homeEntrada {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   RESPONSIVO
========================================================= */
@media (max-width: 650px) {

    .home-logo-container {
        width: 90px;
        height: 90px;
    }
    .home-logo-hotel {
        max-width: 105px;
        max-height: 105px;

    }
    .home-welcome {
        font-size: 10px;
        letter-spacing: 2px;
    }
    .home-content h1 {
        font-size: 38px;
        letter-spacing: -1px;
    }
    .home-frase {
        font-size: 16px;

    }



   .home-user-card {
        width: 100%;
        box-sizing: border-box;
    margin-top: 20px;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 12px 14px;

        padding: 14px;
    }


    /* FOTO */
    .home-user-photo {
        grid-column: 1;
        grid-row: 1;
    }

    /* USUÁRIO */
    .home-user-info {
        grid-column: 2;
        grid-row: 1;

        min-width: 0;
    }

    /* DATA + LOCALIZAÇÃO */
    .home-date-box {
        grid-column: 1 / -1;
        grid-row: 2;

        width: 100%;

        display: flex;
        flex-direction: column;

        padding-top: 12px;
        border-top: 1px solid #e2e8f0;

        gap: 8px;
    }

    .home-date {
        padding: 0;
        border: none;

        display: flex;
        align-items: center;
    }

    .home-date i {
        flex-shrink: 0;
    }

    .home-localizacao {
        margin: 0;

        display: flex;
        align-items: center;
        gap: 6px;
    }

    .home-date-box .home-date:last-child {
        padding-left: 0;
    }

    .home-bottom {
        text-align: center;
        gap: 10px;
        letter-spacing: 0;
    }


    .home-line {
        width: 23px;
    }

}
