/* assets/css/hero.css */
.hero-section {
    /* Fondo con un degradado neutro translúcido (de negro a gris oscuro puro) sobre la imagen */
    background: linear-gradient(rgba(23, 23, 23, 0.85), rgba(38, 38, 38, 0.75)), 
                url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.layout-hero {
    display: flex;
    width: 100%;
    max-width: 1100px;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

.hero-side-text {
    flex: 1.2;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 48px;
    /* Degradado del logo de blanco puro a gris claro neutro */
    background: linear-gradient(90deg, #ffffff, #d4d4d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-side-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-side-text p {
    font-size: 1.2rem;
    color: #f5f5f5; /* Gris muy claro neutro */
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.scroll-btn {
    display: inline-block;
    margin-top: 32px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #ffffff; 
    padding-bottom: 4px;
    transition: all 0.2s;
}

.scroll-btn:hover { 
    opacity: 0.8;
    color: #d4d4d4;
    border-bottom-color: #d4d4d4;
}

.form-side {
    flex: 0.9;
    display: flex;
    justify-content: center;
    width: 100%;
}

.form-container {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    color: #171717;
    border: 1px solid #e5e5e5;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.form-container h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    color: #171717;
}

.social-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    background-color: #f5f5f5; /* Gris claro neutro puro */
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #525252;
    cursor: pointer;
    margin-bottom: 12px;
    transition: all 0.15s;
}

.social-btn:hover { 
    background-color: #e5e5e5; 
    color: #171717;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #737373;
    margin: 24px 0;
    font-size: 0.85rem;
}

.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-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #737373;
    margin-bottom: 8px;
}

.input-field {
    width: 100%;
    padding: 14px 16px;
    background-color: #ffffff;
    border: 1px solid #d4d4d4;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    color: #171717;
    transition: all 0.2s;
}

.input-field:focus { 
    border-color: #171717;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.btn-black {
    width: 100%;
    padding: 16px;
    background-color: #000000; /* Negro puro absoluto */
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 12px;
    transition: background-color 0.2s, transform 0.1s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-black:hover {
    background-color: #262626; /* Gris carbón al pasar el mouse */
}

.btn-black:active {
    transform: scale(0.98);
}

.footer-link {
    margin-top: 28px;
    font-size: 0.9rem;
    color: #737373;
    text-align: center;
}

.footer-link a {
    color: #000000;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #000000;
    transition: color 0.15s;
}

.footer-link a:hover {
    color: #525252;
    border-bottom-color: #525252;
}