/* Estilos para el banner de la Historia de la Hermandad */
.hermandad-banner-historia {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
}

.hermandad-banner-historia .video-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 40%;
}

.hermandad-banner-historia .white-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 120px;
  background: rgba(255,255,255,0.6);
  border-radius: 12px;
  z-index: 1;
}

.hermandad-banner-historia .text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 760px; /* 40px menos que la caja para padding */
  padding: 10px 20px;
}

.hermandad-banner-historia h1 {
  color: #0F4C81;
  font-family: 'Great Vibes', cursive;
  font-size: 4.5rem;
  font-weight: 400;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  letter-spacing: 1px;
  line-height: 1.2;
}

/* Responsive */
@media (max-width: 900px) {
  .hermandad-banner-historia {
    height: 300px;
  }
  .hermandad-banner-historia .white-box,
  .hermandad-banner-historia .text-container {
    width: 90% !important;
    max-width: 600px;
  }
  .hermandad-banner-historia .white-box {
    height: 100px !important;
  }
  .hermandad-banner-historia .text-container {
    width: calc(90% - 40px) !important; /* Mismo ancho que la caja menos padding */
  }
  .hermandad-banner-historia h1 {
    font-size: 2.8rem !important;
  }
}

@media (max-width: 480px) {
  .hermandad-banner-historia .white-box {
    height: 150px !important;
  }
  .hermandad-banner-historia .text-container {
    width: calc(90% - 30px) !important;
    padding: 5px 15px !important;
  }
  .hermandad-banner-historia h1 {
    font-size: 2.2rem !important;
    line-height: 1.1 !important;
  }
}

/* Estilos para el contenido de la Historia de la Hermandad */
/* Contenedor principal */
.historia-hermandad {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Georgia', serif;
    color: #222;
}

/* Contenedor amplio para el contenido */
.contenido-amplio {
    max-width: 1400px;
    margin: 0 auto;
}

/* Título principal */
.titulo-principal {
    font-size: 2.2rem;
    color: #0F4C81;
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 3px solid #D4AF37;
    padding-bottom: 15px;
}

/* Flex para alinear imagen y texto */
.historia-container {
    display: flex;
    gap: 40px;
    margin: 0 auto 30px;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* Contenedor para elementos centrados */
.centrado {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px auto;
    flex-wrap: wrap;
}

/* Imagen */
.historia-imagen {
    flex: 0 0 360px;
}

.historia-imagen img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.historia-imagen img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* Texto */
.historia-texto {
    flex: 1;
    min-width: 300px;
}

.subtitulo-parrafo {
    font-size: 1.5rem;
    color: #0F4C81;
    margin-bottom: 15px;
    border-left: 4px solid #D4AF37;
    padding-left: 10px;
    font-weight: normal;
}

.historia-texto p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.historia-texto strong {
    color: #0F4C81;
    font-weight: bold;
}

.historia-texto em {
    color: #0F4C81;
    font-style: italic;
}

.historia-texto a {
    color: #0F4C81;
    font-weight: bold;
    text-decoration: none;
}

.historia-texto a:hover {
    text-decoration: underline;
}

/* Video */
.video-container {
    flex: 0 0 600px;
    text-align: center;
}

.video-container video {
    width: 600px;
    height: 600px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.video-container-grande {
    width: 100%;
    margin: 30px 0;
    text-align: center;
}

.video-container-grande video {
    width: 1000px;
    height: 600px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.subtitulo-video {
    font-style: italic;
    color: #777;
    margin-top: 10px;
    font-size: 0.95rem;
}

.subtitulo-video a {
    color: #0F4C81;
    text-decoration: none;
}

.subtitulo-video a:hover {
    text-decoration: underline;
}

/* Separador */
.separador {
    height: 1px;
    background: linear-gradient(to right, transparent, #D4AF37, transparent);
    margin: 40px 0;
    width: 100%;
}

/* Responsivo */
@media (max-width: 1100px) {
    .video-container {
        flex: 0 0 100%;
    }
    
    .video-container video {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 900px) {
    .historia-container {
        flex-direction: column;
        text-align: center;
    }

    .historia-imagen {
        flex: 0 0 auto;
        margin: 0 auto;
        max-width: 360px;
    }

    .historia-texto {
        text-align: left;
    }

    .centrado {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .titulo-principal {
        font-size: 1.8rem;
    }
    
    .subtitulo-parrafo {
        font-size: 1.3rem;
    }
}
