/* global.css se aloja en: assets/css/global.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--primary-font-family);
}
input, button, select, textarea {
    font-family: inherit;
}
a {
    text-decoration: none;
}
:root {
    /* Familia de la fuente */
    --primary-font-family: "Poppins", sans-serif;
    /* Font size */
    --font-size-h1: 3rem;
    --font-size-h2: 2.5rem;
    --font-size-h3: 2rem;
    --font-size-h4: 1.5rem;
    --font-size-general: 1rem;
    --font-size-min: 0.75rem;
    /* Color de fuentes principales */
    --one-font-color: #000000;
    --two-font-color: #ffffff;
    --three-font-color: #333333;
    --four-font-color: #0071e3;
    --five-font-color: #666666;
    /* Background color */
    --one-bg-color: #ffffff;
    --two-bg-color: #000000;
    --three-bg-color: #f5f5f5;
    --four-bg-color: #0071e3;
    --five-bg-color: #333333;
    /* Line height */
    --line-height-primary: 1.2;
    --line-height-secundary: 1.4;
    --line-height-tertiary: 1.6;
    --line-height-quarter: 1.8;
    --line-height-fifth: 2;
    /* Border radius */
    --one-border-radius: 10px;
    --two-border-radius: 20px;
    --three-border-radius: 30px;
    /* Border color */
    --one-border-color: #000000;
    --two-border-color: #e5e5e5;
    --three-border-color: #ffffff;
    --four-border-color: #333333;
}
h1 {
    font-size: var(--font-size-h1);
    color: var(--one-font-color);
    font-weight: 700;
}
h2 {
    font-size: var(--font-size-h2);
    color: var(--one-font-color);
    font-weight: 300;
}
h3 {
    font-size: var(--font-size-h3);
    color: var(--one-font-color);
    font-weight: 700;
}
h4 {
    font-size: var(--font-size-h4);
    color: var(--one-font-color);
    font-weight: 700;
}
p, li {
    font-size: var(--font-size-general);
    line-height: var(--line-height-secundary);
    color: var(--three-font-color);
}
span, label {
    font-size: var(--font-size-min);
    color: var(--three-font-color);
}
.main-nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 61px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    display: flex;
    justify-content: center;
}
.nav-container {
    width: 100%;
    max-width: 500px;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    font-family: var(--primary-font-family);
    font-size: 33px;
    color: #000000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.logo-solid-o {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #000;
    border-radius: 50%;
    margin: 0 2px;
    flex-shrink: 0;
}
.logo-qr-me {
    font-weight: 300;
    color: #000 !important;
    font-size: 1.125rem !important;
    margin: 10px 0 0 3px !important;
}
.verify-input-container {
    display: none;
    margin-bottom: 16px;
    animation: fadeIn 0.4s ease-in-out;
}
.verify-input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    height: 20px;
    justify-content: center;
    z-index: 1002;
}
.hamburger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--one-font-color);
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 2px;
}
.hamburger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; }
.hamburger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay-menu {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px; 
    background-color: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    z-index: 1001;
    border-bottom: 1px solid #e5e5e5;
}
.nav-overlay-menu.active { 
    max-height: 400px; 
}
.nav-links-list { 
    list-style: none; 
    padding: 20px 20px 10px 20px;
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
    max-width: 500px; 
    margin: 0 auto; 
}
.nav-links-list li a {
    display: block;
    padding: 10px 10px;
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.2s, color 0.2s;
}
.nav-links-list li a:hover { 
    background-color: #f5f5f5; 
    color: #000000; 
}
.nav-links-list span {
    font-size: 1rem;
}
.nav-search-form {
    display: flex;
    gap: 8px;
    width: 100%;
}
.nav-search-input {
    border: 1px solid #d4d4d4;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    width: 200px;
    flex-grow: 1;  
    padding: 10px 10px;
}
.nav-search-input:focus {
    border-color: #171717;
}
.nav-search-btn {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 10px 25px; 
    font-size: 1rem;
}
.nav-search-btn:hover {
    background-color: #262626;
}
.create-account {
    padding: 12px 8px;
}

/* Diseño de formulario del login */
.form-host {
    max-width: 1100px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form-container p {
    text-align: center;
}
.form-container {
    width: 100%;
    max-width: 400px;
    background: var(--one-bg-color);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 1px 1px rgb(0 0 0 / 15%);
}
.form-container h4 {
    margin-bottom: 28px;
    font-size: var(--font-size-h4);
    font-weight: 300;
}
.social-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: var(--font-size-general);
    font-weight: 500;
    color: var(--three-font-color);
    cursor: pointer;
    margin-bottom: 12px;
    transition: 0.5s;
}
.social-btn:hover { 
    background-color: red; 
    color: var(--one-font-color);
}
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--three-font-color);
    margin: 24px 0;
    font-size: var(--font-size-min);
}
.divider::before, .divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #e5e5e5;
}
.divider:not(:empty)::before { margin-right: 1em; }
.divider:not(:empty)::after { margin-left: 1em; }
.input-group { 
    margin-bottom: 20px; 
}
.input-field {
    font-weight: 300;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--two-border-color);
    border-radius: var(--one-border-radius);
    font-size: var(--font-size-general);
    outline: none;
    color: var(--three-font-color);
    transition: 0.5s;
}
.input-field:focus { 
    border-color: var(--one-border-color);
    color: var(--one-font-color);
}
.btn-global {
    font-size: var(--font-size-general);
    background: var(--five-bg-color);
    color: var(--two-font-color);
    border: 0;
    padding: 5px 15px 5px 15px;
    border-radius: var(--two-border-radius);
    font-weight: 500;
}
.btn-mini {
    padding: 0px 10px 0px 10px;
    font-size: 0.75rem;
    background: var(--five-bg-color);
    color: var(--two-font-color);
    border: 0;
    border-radius: var(--two-border-radius);
}
.btn-global:hover,
.btn-mini:hover {
    opacity: 0.9;
    transition: 0.1s;
}
.btn-back {
    display: inline-block;
    background: var(--three-bg-color);
    color: var(--three-font-color);
    border: 1px solid var(--four-border-color);
    padding: 2px 10px 2px 10px;
    margin: 20px 0 0 auto;
}
.btn-back:hover {
    opacity: 0.8;
    transition: 0.5s;
    color: var(--two-font-color);
}
.login {
    width: 100%;
}
.footer-link {
    margin-top: 28px;
    font-size: var(--font-size-general);
    color: var(--three-font-color);
    text-align: center;
}
.footer-link a {
    color: var(--one-font-color);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid black;
    transition: 0.5s;
}
.footer-link a:hover {
    color: var(--three-font-color);
    border-bottom-color: var(--three-font-color);
}
.profile-footer {
    text-align: center;
    padding: 20px 0;
}
.profile-footer p {
    font-size: var(--font-size-min);
    color: var(--three-font-color);
}
.min-title {
    font-size: var(--font-size-min);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--three-font-color);
    margin-bottom: -5px;
}

.container-global {
    padding: 30px 20px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 1px 2px rgb(0 0 0 / 10%);
    border-radius: var(--two-border-radius);
    background: #fff;
}
.host-global {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--three-bg-color); 
    min-height: 100vh;
    padding: 30px 10px;
}