@font-face {
  font-family: 'Dogbangy';
  src: url('fonts/Dogbangy.otf') format('otf');
}
@font-face {
  font-family: 'Futura';
  src: url('fonts/Futura.otf') format('otf');
}

body {
  background-color: #FFEBF5;
  font-family: 'Futura', sans-serif;
  margin: 0;
  color: #000;
}

p {
  font-size: clamp(1rem, 3vw, 1.4rem);
}


/* --- HEADER --- */
.header {
  background: linear-gradient(to bottom, #E9CEEA, #FF4EAC);
  padding: 10px 20px;
  box-shadow: 0 2px 4px #00000050;
  display: flex;
  flex-direction: column; 
  align-items: flex-start;
  text-align: center;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 5px;
}

.language-switcher {
  font-size: 0.9rem;
  color: white;
}

@media (max-width: 600px) {
  .header-content {
    flex-direction: column;
    gap: 5px;
  }

  .logo {
    height: 40px;
  }

  .language-switcher {
    font-size: 0.8rem;
    margin-top: 5px;
  }
}
.logo {
  height: clamp(36px, 5vw, 56px);  /* se hace peque en pantallas estrechas */
  width: auto;
}

.subtitle {
  font-family: Baskerville, 'Palatino Linotype', Palatino, 'Century Schoolbook L', 'Times New Roman', 'serif';
 font-size: clamp(0.75rem, 2.2vw, 1rem);
  color: white;
  margin: 0;
}

.logo-grande {
  text-align: center;
  margin: 40px 0 20px;
}

.logo-grande img {
  max-width: 500px;
  width: 80%;
  height: auto;

}

/* Animaciones para el logo de titulo */
@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

.logo-grande img {
  opacity: 0;
  animation:
    fadeInZoom 1.5s ease-out forwards,
    float 3s ease-in-out infinite;
  animation-delay: 0.3s, 1.8s; /* fade primero, luego flotar */
}


.trailer .embed {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto 40px;
  padding: 0; /* quitamos padding fijo */
}

.trailer .embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid white;
  box-shadow: 2px 2px 4px black;
}

.trailer .embed::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* Mantiene relación 16:9 */
}
.fotogramas {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.fotograma {
  width: 350px;
  height: auto;
  border: 2px solid white;
  box-shadow: 2px 2px 4px black;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}

.fotograma:hover {
  transform: scale(1.05);
}

.fotograma {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.fotograma:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 102, 178, 0.7);
  z-index: 2;
}
	
.formulario .embed {
  background: #bbb;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  max-width: 80%;
  border: 2px solid white;
  box-shadow: 2px 2px 2px black;
}



h2 {
  font-family: 'Dogbangy';
  text-align: center;
  margin-top: 40px;
font-size: clamp(1.5rem, 5vw, 2.5rem);
  margin-bottom: 10px;
}

.boton-descarga-wrapper {
  text-align: center;
  margin: 30px 0;
}

.descargar-btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: 'Dogbangy', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(to bottom, #E9CEEA, #FF4EAC);
  border: 3px solid white;
  border-radius: 50px;
  box-shadow: 2px 2px 2px black;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  max-width: 90%;
}

.descargar-btn:hover {
  transform: scale(1.05);
}


.texto-descarga, .ficha-tecnica {
  max-width: 90%;
  margin: 20px auto;
  font-size: 0.9rem;
}

.logos {
  text-align: center;
  margin: 40px 0;
}

.logo-small {
  height: 40px;
  margin: 0 10px;
}

.info-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 50px auto;
  padding: 20px;
  max-width: 1200px;
}


.columna {
  flex: 1 1 400px;
  background-color: white;
  border: 3px solid white;
  box-shadow: 3px 3px 4px black;
  border-radius: 20px;
  padding: 20px;
  font-family: 'Futura', sans-serif;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  line-height: 1.5;
  color: #000;
}
.logos-productoras {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}

.logos-productoras img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

/* Selector de idioma */
.language-switcher {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 0.9rem;
}

.language-switcher a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.language-switcher a:hover {
  color: #ffd6f3;
}

.language-switcher a.active {
  text-decoration: underline;
}

/* Premios y nominaciones */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px;
  margin-top: 20px;
  justify-items: center;
  align-items: stretch;
}
@media (min-width: 1200px) {
  .awards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 480px) {
  .awards-grid {
    grid-template-columns: 1fr; 
  }
}
.award-item {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 250px;
  display: flex;             
  flex-direction: column;     
  justify-content: space-between; 
}

.award-item:hover {
  transform: scale(1.05);
}

.award-item img {
  max-width: 150px;
  height: auto;
  margin: 0 auto 10px; 
}

.award-item p {
  font-size: 0.9rem;
  margin: 0;
  flex-grow: 1; 
  display: flex;
  align-items: center; 
  justify-content: center;
  text-align: center;
}


.progress-bar {
  width: 50%;
  height: 30px;
  background-color: #ccc;
  border-radius: 20px;
  margin: 10px auto 30px;
  border: 4px solid white;
  box-shadow: 2px 2px 5px #888;
  overflow: hidden;
}

 #progress-fill {
  height: 100%;
  width: 40%; 
  background: linear-gradient(to bottom, #E9CEEA, #FF4EAC);
  transition: width 0.4s ease-in-out;
}

       .rewards {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
}
       .reward-item {
  margin: 15px auto;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.2rem;
  color: #000;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reward-item.locked {
  background-color: #891667;
  color: #fff;
}

.reward-item.unlocked {
  background-color: #f9a8d4; 
  color: #000;
}
        footer {
			text-align: center;
            margin-top: 4rem;
            padding: 1rem;
            font-size: 0.9rem;
            color: #888;
        }

