/* ------------------ BASE ------------------ */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #2C3E50;
}

/* ------------------ HEADER ------------------ */
header {
    background-color: #1ABC9C;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 1.5em;
}

/* ------------------ PERFIL ------------------ */
.perfil {
    position: relative;
    display: inline-block;
}

.perfil-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1em;
}

.perfil-btn i {
    margin-right: 5px;
}

.perfil-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    color: #2C3E50;
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
    z-index: 1;
}

.perfil-menu a {
    display: block;
    padding: 12px;
    text-decoration: none;
    color: #2C3E50;
}

.perfil-menu a:hover {
    background-color: #f1f1f1;
}

/* ------------------ MAIN ------------------ */
main {
    padding: 40px 20px;
    text-align: center;
}

/* ------------------ BIENVENIDA ------------------ */
.bienvenida {
    background-color: #ECF0F1;
    padding: 30px;
    margin: auto;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.bienvenida h2 {
    color: #3498DB;
}

.bienvenida p {
    font-size: 1.1em;
    margin-top: 10px;
}

/* ------------------ FOOTER ------------------ */
footer {
    background-color: #2D2D2D;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}

/* ------------------ LOGIN ------------------ */
.login {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 35vh;
    margin: 0;
    color: #2C3E50;
}

.login-box {
    background-color: #ffffffdd;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.login-box h2 {
    margin-bottom: 20px;
    color: #00796B;
}

.login-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #4285F4;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.login-option:hover {
    background-color: #3367D6;
}

/* ------------------ CTA / BOTÓN GENERAR ------------------ */
.cta-generar {
    display: flex;
    justify-content: center;
    margin: 40px 0 20px;
}

.generar-btn {
    background: linear-gradient(to right, #1ABC9C, #16A085);
    color: white;
    padding: 14px 28px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, background 0.3s;
}

.generar-btn i {
    margin-right: 10px;
}

.generar-btn:hover {
    background: linear-gradient(to right, #16A085, #0E6655);
    transform
}