/* --- Estilo del Video Hero --- */
.video-hero {
    background-color: #000;
    padding-bottom: 20px;
}

.video-wrapper {
    border-radius: 12px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(255, 155, 0, 0.2);
}

/* Ajuste para que en móviles no pegue a los bordes */
@media (max-width: 768px) {
    .video-wrapper {
        border-width: 2px;
    }
}

/* Contenedor principal */
.sinopsis-container {
    background-color: #272727;
    padding: 40px;
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
}

/* Título Sinopsis */
.sinopsis-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif; 
}

/* Cuerpo del texto */
.sinopsis-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #ffffff;
    text-align: justify; 
    margin-bottom: 30px;
}

/* Botón Reservar */
.btn-reservar {
    background-color: #D32213;
    color: white;
    padding: 10px 45px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-reservar:hover {
    background-color: #b71c1c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}

/* Título con fuente Alegreya */
.faq-show-title {
    font-family: 'Alegreya', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: white;
}

/* Contenedor de los ítems */
.info-show-container {
    padding: 20px 0;
}

/* Iconos */
.info-show-item i {
    font-size: 3rem;
    color: white;
    display: block;
    margin-bottom: 15px;
}

/* Subtítulos (Duración, Ficha técnica) */
.info-show-item h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

/* Textos pequeños (25 min, número) */
.info-show-item p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Líneas divisorias verticales */
.border-side {
    border-right: 1px solid #444;
}

/* Ajuste para móviles: quitar líneas verticales y dar espacio */
@media (max-width: 767px) {
    .border-side {
        border-left: none;
        border-right: none;
        border-top: 1px solid #444;
        border-bottom: 1px solid #444;
        margin: 20px 0;
        padding: 20px 0;
    }
    .info-show-item {
        margin-bottom: 30px;
    }
}

/* Título "Galeria" */
.gallery-main-title {
    font-family: 'Alegreya', serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 30px;
    text-align: left; /* Alineado a la izquierda como en la imagen */
}

/* Contenedor de cada imagen */
.gallery-item {
    overflow: hidden;
    background-color: #000;
}

.gallery-item img {
    width: 100%;
    height: 350px;    /* Altura fija para que todas las fotos se vean iguales */
    object-fit: cover; /* Hace que la imagen llene el espacio sin estirarse */
    transition: transform 0.5s ease;
    display: block;
}

/* Efecto opcional: un pequeño zoom al pasar el mouse */
.gallery-item img:hover {
    transform: scale(1.08);
    cursor: pointer;
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .gallery-item img {
        height: 250px; /* Más pequeño en celulares */
    }
    .gallery-main-title {
        font-size: 2.2rem;
        text-align: center;
    }
}

/* Título de show*/
.t1 h1 {
    font-family: 'Alegreya', serif;
    font-weight: bold;
    font-size: clamp(2rem, 5vw, 3.1rem);
    text-transform: uppercase;
    color: #FF9B00;
    margin: 30px 0;
}

/* --- SECCIÓN COMENTARIOS --- */

.lista-comentarios {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Espacio entre cada comentario */
}

.comentario-card {
    background-color: #1e1e1e; /* Fondo oscuro de la tarjeta */
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Estilo del Avatar con doble borde */
.avatar-wrapper {
    flex-shrink: 0;
}

.avatar-border {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid #FF9B00; /* Borde naranja exterior */
    padding: 4px; /* Espacio para el borde blanco interno */
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-border img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff; /* Borde blanco interior */
}

/* Caja de texto del comentario */
.comentario-texto-box {
    border: 1px solid rgba(255, 255, 255, 0.6); /* Borde blanco fino */
    padding: 20px;
    flex-grow: 1;
    border-radius: 4px; /* Bordes ligeramente redondeados como en la imagen */
}

.comentario-texto-box p {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    text-align: justify;
}

/* Ajuste Responsivo para móviles */
@media (max-width: 768px) {
    .comentario-card {
        flex-direction: column; /* Avatar arriba, texto abajo */
        text-align: center;
        padding: 20px;
    }
    
    .comentario-texto-box p {
        text-align: center;
    }
    
    .avatar-border {
        width: 90px;
        height: 90px;
    }
}