/* Centrado y ajuste para email y derechos reservados */
.contact-email {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #FFD700;
    background: #262e40;
    border-radius: 8px;
    padding: 15px;
    margin: 0 auto 20px auto;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    word-break: break-all;
    overflow-wrap: break-word;
}

footer {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}
footer > div {
    width: 100%;
    text-align: center;
    margin: 10px 0;
}
/* --- 0. Reset básico, Variables y FONDO DE PÁGINA COMPLETA --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CLAVE: segura la altura completa para que 'vh' y el centrado funcionen correctamente */
html, body {
    height: 100%; 
}
body, h1, h2, h3, h4, h5, h6, p, div, span {
    font-family: 'Montserrat', sans-serif !important;
}
body h2{
    color: #FFD700;
}
body {
    margin: 0; 
    font-family: Arial, sans-serif;
    color: white;
     margin-top: -40px; /* Esto empuja la sección 3px hacia arriba */
    /* ¡FONDO DE PÁGINA COMPLETA! */
    background-image: url('https://static.euronews.com/articles/stories/06/44/65/88/1440x810_cmsv2_d8afb9b6-414d-5d45-8269-10881e82cfe6-6446588.jpg'); 
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* Efecto Parallax */
    background-color: #0a1428;
}

/* --- SUPERPOSICIÓN OSCURA EN TODA LA PÁGINA (Para legibilidad) --- */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* Capa oscura semi-transparente que cubre todo */
    background-color: rgba(0, 0, 0, 0.75); 
    z-index: -1; 
}


/* --- Elemento MAIN (si existe en tu HTML) para asegurar que el footer vaya al fondo --- */
main {
    flex: 1; 
}


/* ------------------------------------------- */
/* --- 1. Hero Section (Sección Principal) --- */
/* ------------------------------------------- */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;;
    background-color: #0A1428; 
    background-image: url('https://images.plex.tv/photo?size=large-1920&scale=1&url=https%3A%2F%2Fmetadata-static.plex.tv%2F7%2Fgracenote%2F7c8f62b6d58fc7aa5e7eed936ccac52b.jpg');
    background-size: cover;
    background-position: center center;
}

.hero-section-general {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;;
    background-color: #0A1428; 
    background-image: url('img/generalFondo.jpg');
    background-size: cover;
    background-position: center center;
}

.hero-section-conversatorio {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;;
    background-color: #0A1428; 
    background-image: url('img/conversatoriofondo.jpg');
    background-size: cover;
    background-position: center center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* Capa oscura específica del hero para hacer destacar el título */
    background-color: rgba(10, 15, 25, 0.4); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 90px;
}



.trailer-button {
    text-decoration: none;
    color: #FFFFFF;
    background-color: #0A1428;
    border: 1px solid #152850;
    padding: 18px 40px;
    font-size: 1.15em;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    margin-top: 20px;
}

.trailer-button:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #FFD700;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.2), 0 0 10px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.silhouette-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 5;
    background-image: url('URL_DE_TU_SILUETA_TRANSPARENTE_AQUI.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
}


/* ------------------------------------------- */
/* --- 2. Sección Historia (Tarjeta Centrada SIMÉTRICA) --- */
/* ------------------------------------------- */
/* ------------------------------------------- */
/* --- Sección Historia (Ajuste Final de Dimensiones: Más Ancha y Menos Alta) --- */
/* ------------------------------------------- */
.isms-two-columns {
    display: flex;
    flex-direction: column; /* contenido siempre vertical */
    justify-content: flex-start;
    align-items: center;

    width: 100%;
    max-width: 1000px; /* límite máximo para pantallas grandes */
    margin: 0 auto;
    padding: 40px 20px;

    min-height: auto;
    color: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

/* ===== IMÁGENES Y VIDEOS ===== */
.imgdetargeta, .imgdetargeta2, .imgdetargeta3, .imgdetargeta-general,
video {
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 100%;  /* nunca excede el contenedor */
    height: auto;     /* mantiene proporción */
}

/* Tamaños máximos */
.imgdetargeta, .imgdetargeta2 { max-width: 490px; max-height: 430px; }
.imgdetargeta3 { max-width: 600px; max-height: 430px; }
.imgdetargeta-general { max-width: 700px; max-height: 400px; }

/* ===== CONTENEDOR DE IMÁGENES ===== */
.contenedor-imagenes {
    display: flex;
    flex-wrap: wrap;      /* si no caben, pasan a la siguiente línea */
    justify-content: center;
    gap: 10px;
}

/* ===== TARJETAS ===== */
.isms-card {
    background-color: #262e40;
    color: #fff;
    padding: 30px 20px;
    border-radius: 15px;

    width: 100%;
    max-width: 800px;   /* límite máximo */
    margin: 20px auto;

    text-align: left;
    opacity: 0.89;
    box-shadow: 0 10px 30px rgba(21, 40, 80, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.isms-card h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    color: #FFD700;
}

.isms-card p {
    font-size: 1.1em;
    line-height: 1.6;
}

.impact-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
    text-align: left;
}

/* ===== TEXTOS ===== */
h3 {
    text-align: center;
    font-size: x-large;
}

ul {
    list-style-type: "•";
    line-height: 2.5;
}

/* ===== MEDIA QUERIES ===== */

/* Pantallas medianas (computadora normal) */
@media (max-width: 1200px) {
    .isms-two-columns {
        max-width: 850px;  /* más compacto que en gigante */
        padding: 35px 15px;
    }
    .isms-card {
        max-width: 90%;
        padding: 25px 15px;
    }
    .imgdetargeta, .imgdetargeta2, .imgdetargeta3, .imgdetargeta-general,
    video {
        width: 90%;
    }
}

/* Laptops pequeñas y tablets */
@media (max-width: 992px) {
    .isms-two-columns {
        max-width: 700px;
        padding: 30px 15px;
    }
    .isms-card {
        max-width: 95%;
        padding: 20px 15px;
    }
    .imgdetargeta, .imgdetargeta2, .imgdetargeta3, .imgdetargeta-general,
    video {
        width: 85%;
    }
}

/* Celulares */
@media (max-width: 768px) {
    .isms-two-columns {
        width: 95%;
        padding: 25px 10px;
    }
    .contenedor-imagenes {
        flex-direction: column; /* apila vertical */
        gap: 15px;
    }
    .isms-card {
        width: 95%;
        padding: 15px 10px;
    }
    .imgdetargeta, .imgdetargeta2, .imgdetargeta3, .imgdetargeta-general,
    video {
        width: 90%;
    }
    h3 { font-size: large; }
}

/* ===== .imgdetargeta y .imgdetargeta2 lado a lado y del mismo tamaño ===== */
@media (min-width: 992px) {
  .contenedor-imagenes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* espacio entre ambas */
  }

  .imgdetargeta,
  .imgdetargeta2 {
    width: 48%;          /* cada una ocupa casi la mitad */
    max-width: 480px;    /* mismo ancho máximo */
    height: 400px;       /* MISMA ALTURA FIJA */
    object-fit: cover;   /* recorta manteniendo proporción */
    border-radius: 10px;
    margin: 0;
    display: block;
  }
}



/* -------------------------------------- */
/* --- 3. Sección Rushan Abbas y Director (Espaciado correcto) --- */
/* -------------------------------------- */
.content-block {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 3;
    position: relative;
    /* Fondo sólido para asegurar que el fondo fijo no se muestre entre bloques */
    background-color: #262e40; 
}

.bri-new-section {
    display: flex;
    gap: 30px;
    padding: 60px 20px;
    /* MARGEN NEGATIVO ELIMINADO: ahora respeta el espacio */
    background-color: #0d1e3d; /* Fondo sólido para consistencia */
    background-image: url('img/rushan2.png'); /* Usamos background-image directamente */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.bri-new-section-taller {
    display: flex;
    gap: 30px;
    padding: 60px 20px;
    /* MARGEN NEGATIVO ELIMINADO: ahora respeta el espacio */
    background-color: #0d1e3d; /* Fondo sólido para consistencia */
    background-image: url('img/Universidad-Veritas_Auditorio_Int_GM.jpg'); /* Usamos background-image directamente */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.bri-left-column {
    flex: 1;
}

.bri-right-column {
    flex: 1;
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.bri-right-column .isms-card {
    max-width: 500px;
    background-color: #262e40; 
    color: #fff;
    padding: 40px 30px; 
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(21, 40, 80, 0.7);
    position: relative;
    left: 0; 
    width: 100%; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.bri-right-column .isms-card h2 { 
    margin-bottom: 20px; 
    font-size: 2em;
    color: #FFD700;
} 
.bri-right-column .isms-card p { 
    font-size: 1.1em;
    line-height: 1.6;
}

/* ===== DIRECTOR RESPONSIVE ===== */
#director-jawad-mir {
    padding: 40px 20px;
}

.director-card {
    display: flex;
    flex-direction: row; 
    max-width: 1200px;
    margin: 0 auto;
    background-color: transparent; 
    border-radius: 12px;
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); 
}

.director-image-container {
    flex: 0 0 350px; 
    position: relative;
    background-color: #3f3f3f; 
    overflow: hidden;
    height: auto; /* permite adaptarse al contenido en móviles */
}

.director-image {
    width: 100%;
    height: auto; /* se adapta proporcionalmente */
    object-fit: cover;
    opacity: 0.85; 
    filter: brightness(0.95); 
    transition: transform 0.3s ease-in-out;
    display: block;
}

.director-image:hover {
    transform: scale(1.03); 
}

.director-info-container {
    flex: 1; 
    padding: 40px;
    background-color: #262e40; 
    color: #f7f9fc; 
    opacity: 89% !important;
}

.director-title {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2.5rem;
    color: #ffffff; 
    z-index: 10;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); 
}

.info-subtitle {
    font-size: 1.5rem;
    color: #3498db; 
    margin-bottom: 25px;
    border-bottom: 3px solid #3498db; 
    display: inline-block;
    padding-bottom: 5px;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1200px) {
    .director-card {
        max-width: 90%;
    }
}

@media (max-width: 992px) {
    .director-card {
        flex-direction: column; /* pasa a columna en tablets/móviles grandes */
    }
    .director-image-container {
        flex: 1 1 100%;
        height: auto;
    }
    .director-info-container {
        padding: 20px;
    }
    .director-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .info-subtitle {
        font-size: 1.2rem;
    }
    .director-info-container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .director-title {
        font-size: 1.5rem;
    }
    .info-subtitle {
        font-size: 1rem;
    }
    .director-info-container {
        padding: 10px;
    }
}


/* ===== PRODUCTORA ===== */
#productora-jawad-mir {
    padding: 40px 20px;
}

.productora-card {
    display: flex;
    flex-direction: row; 
    max-width: 1200px;
    margin: 0 auto;
    background-color: transparent; 
    border-radius: 12px;
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); 
    font-size: larger;
}

.productora-image-container {
    flex: 0 0 350px; 
    position: relative;
    background-color: #3f3f3f; 
    overflow: hidden;
}

.productora-image {
    width: 100%;
    height: 100%;             
    object-fit: cover;        
    display: block;
    opacity: 0.9;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border-radius: 0;         
}

.productora-imageinicio {   
    width: 80%;                /* Se adapta al contenedor */
    max-width: 600px;          /* Tamaño máximo en pantallas grandes */
    height: auto;              /* Mantiene proporciones */
    object-fit: cover;        
    display: block;
    margin: 0 auto;            /* Centra la imagen */
    opacity: 0.95;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border-radius: 20px;       /* Bordes suavemente redondeados */
    box-shadow: 0 6px 15px rgba(0,0,0,0.25); /* Sombra elegante */
}
 

.productora-image:hover {
    transform: scale(1.03); 
}

.productora-info-container {
    flex: 1; 
    padding: 21px;
    background-color: #262e40; 
    color: #f7faff; 
    opacity: 89% !important;
}

.productora-title {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2.5rem;
    color: #ffffff; 
    z-index: 10;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); 
}

#productora-jawad-mir .productora-card {
    flex-direction: row-reverse; 
}

.info-subtitle {
    font-size: 1.5rem;
    color: #3498db; 
    margin-bottom: 25px;
    border-bottom: 3px solid #3498db; 
    display: inline-block;
    padding-bottom: 5px;
}

/* ===== MEDIA QUERIES ===== */

@media (max-width: 1200px) {
    .productora-card {
        max-width: 90%;
    }
}

@media (max-width: 992px) {
    #productora-jawad-mir .productora-card {
        flex-direction: column; /* se apilan en pantallas medianas */
    }
    .productora-image-container {
        flex: 1 1 100%;
        height: auto;
    }
    .productora-image,
    .productora-imageinicio {
        height: auto; /* mantiene proporciones */
    }
    .productora-info-container {
        padding: 20px;
    }
    .productora-title {
        font-size: 2rem;
        position: static; /* evita solaparse con la imagen en móviles */
        margin-bottom: 15px;
        display: block;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .info-subtitle {
        font-size: 1.2rem;
    }
    .productora-info-container {
        padding: 15px;
    }
    .productora-card {
        font-size: medium;
    }
}

@media (max-width: 480px) {
    .productora-title {
        font-size: 1.5rem;
    }
    .info-subtitle {
        font-size: 1rem;
    }
    .productora-info-container {
        padding: 10px;
    }
    .productora-card {
        box-shadow: none; /* mejora rendimiento visual en móviles */
    }
}




























.impact-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #FFD700; 
    border-left: 5px solid #FFD700;
    padding-left: 20px;
    margin: 20px 0 30px 0;
    line-height: 1.4;
}


/* Modal */
.modal {
    position: fixed;
    z-index: 100;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.95);
    display: none;
    align-items: center; 
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.video-container {
    padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
    position: relative;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.close-btn {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    position: absolute;
    top: -40px; right: -40px;
    cursor: pointer;
    z-index: 120;
    background-color: rgba(0,0,0,0.7);
    border-radius: 50%;
    line-height: 1;
    padding: 5px 10px;
}

.gallery-card {
  background: #322c748f;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1000px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  margin: 200px auto;
}

.gallery-card h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #FFD700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.dos-columnas {
  display: flex;
  gap: 20px;
}

.columna {
  flex: 1; /* ambas columnas ocupan el mismo espacio */
}

/* ===== GALERÍA ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
  padding: 20px;
}

.gallery-item img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* ===== MODAL ===== */
.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  display: block;
  margin: auto;
  margin-top: 50px;
  max-width: 80%;
  border-radius: 12px;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: red;
}

.whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 20px;
      right: 20px;
      background-color: #25d366;
      color: #fff;
      border-radius: 50%;
      text-align: center;
      font-size: 30px;
      box-shadow: 2px 2px 5px #999;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s;
    }
    .whatsapp-float:hover {
      transform: scale(1.1);
    }
    .whatsapp-icon {
      width: 35px;
      height: 35px;
    }


/* ---------------------------------- */
/* --- 5. Animaciones y Responsive --- */
/* ---------------------------------- */

@keyframes letras-temblorosas {
    0% { transform: translate(-1px,1px) rotate(0.2deg); opacity:0.95; }
    50% { transform: translate(0,0) rotate(-0.1deg); opacity:1; }
    100% { transform: translate(1px,-1px) rotate(-0.2deg); opacity:0.95; }
}

/* --- Responsive para Tabletas y Escritorios Pequeños (Hasta 900px) --- */
@media (max-width: 100px) {
    /* HERO SECTION */
   
    /* BLOQUES DE CONTENIDO (Director y Bri New Section) */
    .director-card, .bri-new-section {
        flex-direction: column; 
    }
    
    .director-image-container {
        flex: auto;
        height: 350px; /* Asegura una buena altura para la imagen en vertical */
    }
    
    .director-info-container {
        padding: 30px; /* Reduce el padding en tabletas */
    }
    

    .bri-left-column, .bri-right-column {
        flex: auto;
    }
    
    .bri-right-column .isms-card {
        max-width: 100%; /* El card toma todo el ancho de la columna */
        margin: 0 auto; 
    }

    /* MODAL */
    .modal-content {
        max-width: 600px;
    }
    
    .close-btn {
        top: 10px; right: 10px;
        font-size: 30px;
    }
    
    /* CARD DE HISTORIA (isms-card) */
    .isms-card {
        padding: 30px 20px;
        max-width: 95%; /* Asegura que no se pegue a los bordes */
    }
}

/* --- Responsive para Teléfonos Móviles (Hasta 600px) --- */
@media (max-width: 100px) {
    /* RESET DE BODY */
    body {
        /* Deshabilita el Parallax para ahorrar recursos en móviles */
        background-attachment: scroll;
    }

    /* HERO SECTION */
    .hero-content {
        /* Reduce el min-height del hero en móviles para mostrar más contenido debajo */
        height: 80vh; 
    }
    

    
    .trailer-button {
        padding: 15px 25px; 
        font-size: 1em;
    }
    
    /* SECCIÓN DIRECTOR */
    #director-jawad-mir {
        padding: 20px 10px; /* Reduce el padding de la sección contenedora */
    }
    
    .director-image-container {
        height: 250px; /* Hace la imagen más compacta */
        /* Eliminamos el título en el celular si está sobre la imagen, ya que el espacio es reducido */
        .director-title { display: none; }
    }
    
    .director-info-container {
        padding: 20px;
    }
    
    .info-subtitle, .isms-card h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .impact-quote {
        font-size: 1.2rem;
        margin: 15px 0 20px 0;
    }
    
    /* SECCIÓN DE HISTORIA (isms-card) */
    .isms-card {
        padding: 25px 15px;
    }

    .isms-card p, .info-text {
        font-size: 1em; /* Texto legible y ajustado */
    }
    
    /* CARD DE IMAGEN (Si la usas en la tarjeta de historia) */
    .imgdetargeta {
        width: 100% !important; /* La imagen ocupa todo el ancho disponible */
        height: auto !important; /* Mantiene la proporción */
    }
    
    /* MODAL DE VIDEO */
    .modal-content {
        width: 95%; /* Usa casi todo el ancho de la pantalla */
    }
    
    .close-btn {
        top: -30px; right: 0; /* Mueve el botón de cerrar para que quepa */
        font-size: 25px;
        padding: 5px;
    }
    
    /* FONDOS FIJOS EN SECCIONES (Para evitar problemas en móviles) */
    .bri-new-section {
        background-attachment: scroll;
    }
}

/* Para la sección contacto */


nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 30px; /* Aquí aumentamos el padding vertical para que sea más alta */
    background: rgba(56, 55, 141, 0.4);
    backdrop-filter: blur(7px);
    z-index: 1000;
    gap: 20px;
}
    nav a {
      color: white;
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: 500;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #ffd700; /* Amarillo dorado */
    }

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center; /* Centra la sección de links */
    align-items: center;
    padding: 15px 30px;
    position: relative;
}

/* Logo a la izquierda */
.logo {
    position: absolute;
    left: 30px;
}

.logo-img {
    height: 40px; /* Ajusta tamaño del logo */
}

/* Links del menú */
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    text-align: center;
}

/* Estilo de los enlaces */
.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #FFD700;
}

/* Botón hamburguesa (oculto en escritorio) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: absolute;
    right: 30px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* --- Responsive Móviles --- */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; /* Empieza desde arriba */
        height: 100vh; /* Ocupa toda la altura de la pantalla */
        width: 250px; /* Más ancho que antes */
        right: -250px; /* Escondido fuera de pantalla */
        background-color: rgba(38, 46, 64, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0; /* Cuando se abre, ocupa todo el ancho */
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}
/* Contenedor */
.taller-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Título principal */
.taller-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffd700;
}

/* Tarjetas modernas */
.taller-item {
    position: relative;
    background: #0e1c39; /* azul medio */
    padding: 30px 25px 30px 70px;
    margin-bottom: 40px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.taller-item:hover {
    transform: translateY(-5px);
}

/* Icono de claqueta (decorativo) */
.icon-clapper {
    position: absolute;
    top: 25px;
    left: 20px;
    width: 30px;
    height: 30px;
    background: #ffd700;
    clip-path: polygon(0% 100%, 100% 100%, 80% 0%, 20% 0%); /* forma de claqueta estilizada */
}

/* Subtítulos */
.taller-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffd700;
}

/* Párrafos */
.taller-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Texto final */
.taller-closing {
    text-align: center;
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 50px;
    color: #ffffff;
}


.video-ajustado {
    display: block;
    width: 100%;
    max-width: 900px;
    height: 480px;
    margin: 20px auto;
    border: none;
    border-radius: 12px;
}



.proyeccion-cuadro {
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    border-radius: 12px;
    max-width: 900px;
    margin: 40px auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Imagen centrada dentro del cuadro */
.fondo-cuadro {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;        /* mantiene proporción y llena el cuadro */
    object-position: center;  /* centra la parte visible de la imagen */
    opacity: 0.35;
    z-index: 0;
}

/* Asegura que el texto quede encima de la imagen */
.proyeccion-cuadro * {
    position: relative;
    z-index: 1;
}

/* Estilo del título */
.titulo-cuadro {
    font-size: 32px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 15px;
}

.noticia-destacada {
    max-width: 900px;
    margin: 60px auto;
    background: linear-gradient(135deg, #1f2637 0%, #262e40 100%);
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.noticia-destacada h2 {
    font-size: 26px;
    color: #FFD700;
    margin-bottom: 10px;
}

.noticia-destacada p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 25px;
}

.boton-noticia {
    display: inline-block;
    padding: 12px 25px;
    background: #FFD700;
    color: #1f2637;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.boton-noticia:hover {
    background: #fff;
    color: #1f2637;
    transform: scale(1.05);
}


/* ======== TÍTULO PRINCIPAL (solo este cambia) ======== */
.movie-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #ffffff; /* Blanco cinematográfico */
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
  margin: 0;
  padding: 0;

  /* 🔥 Tamaño base grande y centrado */
  font-size: 80px;
  text-align: center;
  display: inline-block;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
}

/* Pantallas medianas (laptops, pantallas intermedias) */
@media (max-width: 1024px) {
  .movie-title {
    font-size: 65px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .movie-title {
    font-size: 50px;
  }
}

/* Teléfonos */
@media (max-width: 480px) {
  .movie-title {
    font-size: 38px;
  }
}
