/* --- Reseteo básico y estilos generales --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    background-color: #00254E;
    color: #B4B4B4;
}

/* --- Estilos para la sección de la imagen (el "héroe") --- */
.hero-section {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

.hero-section picture {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Estilos para la sección de contenido --- */
.content-section {
    padding: 50px 25px;
    max-width: 800px;
    margin: 0 auto;
}

.content-section h1, .content-section h2 {
    margin-bottom: 20px;
    color: #DFDFDF;
}

.content-section h1 {
    font-size: 2.5em;
    
}

.content-section h2 {
    font-size: 2em;
    margin-top: 40px;
}

.content-section p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

/* --- NUEVOS ESTILOS PARA LOS BOTONES --- */

/* Contenedor de los botones */
.button-container {
    margin-top: 30px; /* Espacio superior para separar del texto */
    display: flex; /* Alinea los botones en fila */
    flex-wrap: wrap; /* Permite que los botones pasen a la siguiente línea en pantallas pequeñas */
    gap: 15px; /* Espacio entre los botones */
}

/* Estilo base para todos los botones de llamada a la acción (CTA) */
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    font-weight: bold;
    font-size: 1em;
    text-decoration: none;
    text-align: center;
    border-radius: 10px; /* Bordes redondeados */
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
}

/* Estilo del botón primario (fondo sólido) */
.cta-button {
    background-color: #13559C; /* Un azul primario */
    color: #D6D6D6;
}

/* Efecto hover para el botón primario */
.cta-button:hover {
    background-color: #D6D6D6; /* Un azul más oscuro */
    transform: translateY(-3px); /* Efecto de "levantarse" */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	color: #13559C;
}

/* Estilo del botón secundario (bordeado) */
.cta-button.secondary {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

/* Efecto hover para el botón secundario */
.cta-button.secondary:hover {
    background-color: #007bff;
    color: #ffffff;
}

/* Estilo copyright */
.rk {
    text-align: center;
	align-items: center;
	color: #DFDFDF;
    margin: auto;
}
.conten-rk {
    width: 220px;
    margin: auto;
}