
/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #111;
}


/* =========================
   PÁGINA
========================= */

.perfil-page {

    position: relative;

    width: 100%;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}


/* =========================
   FONDO
========================= */

.perfil-background {

    position: absolute;

    inset: 0;

    background-image:
        url("../images/home/HERO1.webp");

    background-size: cover;

    background-position: center;

    transform: scale(1.03);
}


.perfil-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(0, 0, 0, .72),
            rgba(0, 0, 0, .84)
        );
}


/* =========================
   CONTENEDOR
========================= */

.perfil-container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 650px;

    padding: 30px 20px;
}


/* =========================
   CARD
========================= */

.perfil-card {

    width: 100%;

    padding: 45px;

    background:
        rgba(20, 20, 20, .92);

    border:
        1px solid
        rgba(255, 255, 255, .12);

    border-radius: 20px;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, .45);

    backdrop-filter: blur(15px);
}


/* =========================
   LOGO
========================= */

.perfil-logo {

    text-align: center;

    margin-bottom: 25px;
}


.perfil-logo img {

    width: 150px;

    max-width: 100%;

    height: auto;
}


/* =========================
   HEADER
========================= */

.perfil-header {

    text-align: center;

    margin-bottom: 30px;
}


.perfil-header span {

    color:
        var(--color-primary, #b9975b);

    font-size: 11px;

    letter-spacing: 4px;

    font-weight: 600;
}


.perfil-header h1 {

    margin-top: 8px;

    color: #fff;

    font-size: 30px;

    font-weight: 500;
}


.perfil-header p {

    margin-top: 12px;

    color:
        rgba(255, 255, 255, .62);

    font-size: 13px;

    line-height: 1.6;
}


/* =========================
   OPCIONES
========================= */

.perfil-options {

    display: flex;

    flex-direction: column;

    gap: 12px;
}


.perfil-option {

    display: flex;

    align-items: center;

    gap: 18px;

    width: 100%;

    padding: 18px 20px;

    text-decoration: none;

    background:
        rgba(255, 255, 255, .045);

    border:
        1px solid
        rgba(255, 255, 255, .10);

    border-radius: 12px;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


/* ICONO */

.option-icon {

    flex-shrink: 0;

    width: 48px;

    height: 48px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 10px;

    background:
        rgba(185, 151, 91, .12);

    border:
        1px solid
        rgba(185, 151, 91, .25);
}


.option-icon i {

    color:
        var(--color-primary, #b9975b);

    font-size: 19px;
}


/* INFORMACIÓN */

.option-info {

    flex: 1;
}


.option-info h2 {

    color: #fff;

    font-size: 16px;

    font-weight: 600;

    margin-bottom: 5px;
}


.option-info p {

    color:
        rgba(255, 255, 255, .52);

    font-size: 12px;

    line-height: 1.5;
}


/* FLECHA */

.option-arrow {

    flex-shrink: 0;

    color:
        rgba(255, 255, 255, .4);

    font-size: 14px;

    transition:
        transform .3s ease,
        color .3s ease;
}


/* =========================
   HOVER
========================= */

.perfil-option:hover {

    background:
        rgba(255, 255, 255, .08);

    border-color:
        rgba(185, 151, 91, .45);

    transform:
        translateY(-2px);
}


.perfil-option:hover .option-arrow {

    color:
        var(--color-primary, #b9975b);

    transform:
        translateX(5px);
}


/* =========================
   BOTÓN VOLVER
========================= */

.btn-back {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    margin-top: 25px;

    color:
        rgba(255, 255, 255, .5);

    text-decoration: none;

    font-size: 12px;

    transition:
        color .3s ease;
}


.btn-back:hover {

    color: #fff;
}


/* =========================
   CELULAR
========================= */

@media (max-width: 576px) {

    .perfil-container {

        padding: 20px 15px;
    }


    .perfil-card {

        padding: 35px 20px;

        border-radius: 16px;
    }


    .perfil-logo img {

        width: 130px;
    }


    .perfil-header h1 {

        font-size: 26px;
    }


    .perfil-header p {

        font-size: 12px;
    }


    .perfil-option {

        padding: 15px;

        gap: 12px;
    }


    .option-icon {

        width: 42px;

        height: 42px;
    }


    .option-info h2 {

        font-size: 14px;
    }


    .option-info p {

        font-size: 11px;
    }

}

.admin-access {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin: 30px auto 0;

    width: fit-content;

    padding: 12px 24px;

    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 30px;

    color: #fff;
    text-decoration: none;

    background: rgba(0,0,0,0.25);

    transition: all 0.3s ease;
}

.admin-access:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.admin-access i {
    font-size: 14px;
}

.admin-access span {
    font-size: 13px;
    letter-spacing: 0.5px;
}
