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

body {
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Sección Hero */
#hero {
    height: 100vh;
    background: url('hero-bg.jpg') center center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgb(0, 0, 0);
}

#hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

#hero p {
    font-size: 24px;
    margin-bottom: 40px;
}

.button {
    padding: 15px 30px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.button:hover {
    background-color: #0056b3;
}

/* Sección con filas y columnas */
#content {
    padding: 50px;
    background-color: #f4f4f4;
}

/* Estilo para las filas */
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Estilo para las columnas */
.column {
    background-color: #fff;
    padding: 30px;
    flex: 1 1 45%; /* Ajustar el tamaño de las columnas */
    margin: 10px 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Efecto hover en columnas */
.column:hover {
    transform: translateY(-10px);
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .column {
        flex: 1 1 100%; /* Las columnas toman todo el ancho en pantallas pequeñas */
    }
}


.column h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
}

footer p {
    font-size: 14px;
}

/* Estilos para la sección de "Quiénes Somos" */
#about-us .container{
    padding: 10px 100px;
    background-color: #fff; /* Fondo blanco */
    margin: 20px 0;
}

#about-us h2 {
    font-size: 2.5rem;
    color: #263b84;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

#about-us p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #333; /* Color gris oscuro */
    margin: 10px;
    text-align: justify;
    hyphens: auto; /* Permite el corte de palabras con guiones */
    overflow-wrap: break-word;
    font-family: 'Sora', sans-serif;
}

/* Estilos para la sección de "Certificaciones" */
#certifications .container {
    padding: 10px 100px;
    background-color: #f4f4f4;
    margin: 20px 0;
}

#certifications h2 {
    font-size: 2.5rem;
    color: #263b84;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
}

#certifications p, #certifications ul {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #333; /* Color gris oscuro */
    margin: 10px;
    text-align: justify;
    hyphens: auto; /* Permite el corte de palabras con guiones */
    overflow-wrap: break-word;
    font-family: 'Sora', sans-serif;
}

#certifications ul {
    list-style-type: disc;
    margin-left: 40px;
}

/* Estilos para la sección de "Compromiso y Responsabilidad" */
#commitment .container {
    padding: 10px 100px;
    background-color: #fff;
    margin: 20px 0;
}

#commitment h2 {
    font-size: 2.5rem;
    color: #263b84;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
}

#commitment p, #commitment ul {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #333; /* Color gris oscuro */
    margin: 10px;
    text-align: justify;
    hyphens: auto; /* Permite el corte de palabras con guiones */
    overflow-wrap: break-word;
    font-family: 'Sora', sans-serif;
}

#commitment ul {
    list-style-type: disc;
    margin-left: 40px;
}

/* Estilos para la sección de "Garantía de Servicio" */
#guarantee .container {
    padding: 10px 100px;
    background-color: #f4f4f4;
    margin: 20px 0;
}

#guarantee h2 {
    font-size: 2.5rem;
    color: #263b84;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
}

#guarantee p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #333; /* Color gris oscuro */
    margin: 10px;
    text-align: justify;
    hyphens: auto; /* Permite el corte de palabras con guiones */
    overflow-wrap: break-word;
    font-family: 'Sora', sans-serif;
}

/* Ajustes para móviles */
@media (max-width: 1050px) {
    #about-us h2, #certifications h2, #commitment h2, #guarantee h2 {
        font-size: 2rem;
    }

    #about-us p, #certifications p, #commitment p, #guarantee p {
        font-size: 1.2rem;
    }

    #about-us ul li, #certifications ul li, #commitment ul li {
        font-size: 1.2rem;
        text-align: justify;
        hyphens: auto; /* Permite el corte de palabras con guiones */
        overflow-wrap: break-word;
    }

    #about-us .container, #certifications .container, #commitment .container, #guarantee .container {
        padding: 10px 10px;
        margin: 20px 0;
    }

    .column {
        margin: 10px 10px;
    }

    .underline-text {
        text-decoration: underline;
        text-decoration-color: rgb(0, 0, 0); /* Cambia el color del subrayado */
        text-decoration-style: dotted; /* Puedes cambiar el estilo: solid, dashed, dotted, etc. */
    }

}
