


/* Estilos generales */
body {
    margin: 0;
    font-family: 'Helvetica Neue LT Std Medium Condensed', Arial, sans-serif;
}


/* BANNER */
.banner {
  
  
    color: white;
    text-align: center;
    padding: 100px 20px; /* Reduce el padding interno */
    position: relative;
    height: 20rem; /* Reduce la altura para que el contenido quede más arriba */
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Centra el contenido hacia la parte superior */
}



/* Contenido centrado */
.banner-content {
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5); /* Sombra para el texto */
    padding-top: 20px; /* Ajuste adicional para que no quede pegado */
}

/* Título principal */
.banner h1 {
    font-size: 3.5rem; /* Tamaño grande pero reducido */
    margin-bottom: 15px;
    font-family: 'Helvetica Neue LT Std Medium Condensed', sans-serif;
    text-transform: uppercase; /* Letras mayúsculas */
    letter-spacing: 3px; /* Espaciado entre letras */
    text-shadow: 0 8px 15px rgba(0, 0, 0, 0.6); /* Sombra más pronunciada */
}

/* Descripción */
.banner p {
    font-size: 1rem; /* Tamaño más pequeño */
    margin-bottom: 25px;
    line-height: 1.6; /* Espaciado entre líneas */
    font-family: "Roboto", serif;
    text-align: justify;
}

/* Botón del banner */
.banner-btn {
    text-decoration: none;
    color: white; /* Texto blanco */
    background-color: #bc0613; /* Fondo rojo oscuro */
    padding: 12px 35px; /* Botón ajustado */
    border-radius: 50px; /* Bordes completamente redondeados */
    font-size: 1rem; /* Texto más pequeño */
    font-family: 'Helvetica Neue LT Std Bold Condensed'; /* Fuente personalizada */
    text-transform: uppercase;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); /* Sombra al botón */
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.banner-btn:hover {
    background-color: white; /* Fondo blanco al hacer hover */
    color: #bc0613; /* Texto rojo oscuro */
    transform: scale(1.1); /* Efecto de agrandamiento */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); /* Sombra más pronunciada */
}


/* Sección Historia */
.history-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
    font-family: 'Helvetica Neue LT Std Medium Condensed', Arial, sans-serif;
}

.history-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: justify; /* Justifica el texto */
    padding: 20px;
    border-radius: 12px; /* Bordes redondeados */
    background-color: #ffffff; /* Fondo blanco */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

.history-title {
    font-size: 2rem; /* Tamaño reducido */
    font-family: 'Helvetica Neue LT Std Medium Condensed', sans-serif;
    color: #333333; /* Texto oscuro */
    margin-bottom: 20px;
    text-transform: uppercase; /* Mayúsculas */
    text-align: center; /* Centra el título */
}

.mission-title,
.vision-title {
    font-size: 1.8rem; /* Tamaño reducido */
    font-family: 'Helvetica Neue LT Std Medium Condensed', sans-serif;
    color: #333333; /* Texto gris oscuro */
    margin-top: 30px;
    text-transform: uppercase; /* Mayúsculas */
    text-align: center; /* Centra los subtítulos */
}

.history-text {
    font-size: 1rem; /* Tamaño más pequeño */
    line-height: 1.8;
    color: #666666; /* Texto gris */
    margin-bottom: 20px;
}

.history-image {
    margin-top: 30px;
    text-align: center; /* Centra la imagen */
}

.history-image img {
    max-width: 100%; /* La imagen ocupa todo el ancho disponible */
    border-radius: 12px; /* Bordes redondeados */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra suave */
}


/* Responsividad */
@media (max-width: 768px) {
    .history-title {
        font-size: 1.8rem;
    }

    .mission-title,
    .vision-title {
        font-size: 1.5rem;
    }

    .history-text {
        font-size: 0.9rem;
    }

    .history-container {
        padding: 15px;
    }
}



