/* Reseteo básico y fuentes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* --- BARRA DE NAVEGACIÓN --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center; /* Alinea verticalmente el logo con el texto */
    gap: 15px;           /* Espacio entre logo y texto */
}

.brand-logo {
    width: 50px;         /* Tamaño del logo */
    height: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #002d5e;
    line-height: 1.1;
}

.tagline {
    font-size: 0.7rem;
    font-weight: 600;
    color: #333;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #007bff;
}

.btn-login {
    padding: 8px 20px;
    border: 1px solid #000;
    background-color: transparent;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-login:hover {
    background-color: #f0f0f0;
}

/* --- CONTENIDO PRINCIPAL --- */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
    width: 100%;
}

/* Imagen elástica al 100% del ancho */
.hero-image {
    width: 100%;          /* Ocupa el ancho total del contenedor */
    max-width: 100vw;     /* Límite al ancho de la pantalla */
    height: auto;         /* Mantiene proporción */
    display: block;
}

.cta-button {
    margin-top: 40px;
    padding: 15px 40px;
    background-color: #ff7a00;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
    transition: transform 0.2s, background-color 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: #e66d00;
}

/* Adaptación para celulares */
@media (max-width: 850px) {
    .nav-links {
        display: none;
    }
}