:root {
    --white: #ffffff;
    --black: #000000;
    --grey: #757575;
    --greyLight: #dfe4ea;
    --greyWhite: #f9f9f9;
}

/* ==========================
        BODY
============================= */
.hero_mision_santuario {
    padding: 60px 10%; 
    color: #000; 
    text-align: justify; 
    margin-top: -94px;
}

/* Encabezados */
.hero_mision_santuario h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 40px; 
    color: #22205F; 
}

.hero_mision_santuario h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #22205F;
    text-align: start;
    margin-top: 30px;
}

/* Párrafos */
.hero_mision_santuario p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero_mision_santuario strong {
    color: #22205F; 
}


/* ==========================
        CITA DEL PADRE
============================= */
.cita-padre {
    font-style: italic;
    font-weight: normal;
    text-align: center;
    color: #22205F;
    background-color: rgba(59, 36, 114, 0.1);
    padding: 15px;
    border-left: 5px solid #363296;
    margin: 30px 0;
}

.horario-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 50px;
 

    background-color: white;
}

.horario-imagen {
    flex: 1;
    max-width: 50%;
}

.horario-imagen img {
    width: 700px;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}


.horario-container {
 
    max-width: 50%;
}

.horario-card {
    background: var(--greyWhite);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    text-align: left;
}

.horario-card p{
    color: #313C49;
}

.horario-container h2 {
    color: #312e88;
    margin-top: 20px;
    margin-bottom: 10px;
}

.hora {
    font-weight: bold;
    color: #313C49;
}



@media (max-width: 720px) {

    .hero_mision_santuario{
        padding: 0 10%;
        margin-top: -60px;
    }
  .hero_mision_santuario h2{
    font-size: 1.5rem;
  }
  .hero_mision_santuario h3{
    font-size: 1rem;
  }
  .hero_mision_santuario p{
    font-size: 1rem;
  }
  
}


