body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #f4f4f4;
    color: #2c2c2c;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 40px auto;
}

.video {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2rem;
    aspect-ratio: 16 / 9;
    background: black; /* para el espacio vacío */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.video video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* evita recorte */
}

.main-title {
    font-size: 3.5rem;
    color: #003b6f;
    text-align: center;
    margin: 50px 0 10px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;;
    letter-spacing: 1.5px;
    position: relative;
}

.main-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: #0077b6;
    margin: 12px auto 0;
    border-radius: 2px;
}

.main-subtitle {
    max-width: 800px;
    margin: 10px auto 40px auto;
    padding-left: 15px;
    color: #444;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: center; /* centrado */
    background: none;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.contenedor{
background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  width: 100%;
}

.texto{
        font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: justify;
}





