@charset "utf-8";
/*
Theme Name: Johi Olaizola
Theme URI: http://	johiolaizola.com	
Author: La Vuelta Web
Author URI: http://www.lavueltaweb.com/
Description: Dise&ntilde;o &uacute;nico, desarrollado exclusivamente para Johi Olaizola. Todos los derechos reservados.
Version: 1.0
*/

/* RESET BASE */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  background: #eeebe7;
  color: #000;
  padding: 0;
  margin: 0;
  font-family: 'PlusJakartaSansRegular', sans-serif;
  font-size: 1.6rem; /* base real */
  text-align: center;
}


/* MEDIA */

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}


/* LINKS */

a {
  text-decoration: none;
  color: #444;
  outline: 0;
  transition: 0.3s ease;
}

a:hover {
  color: #555;
}

a:focus {
  outline: 0;
}


/* TEXT */

p {
  font-size: 1.8rem;
  color: #000;
  letter-spacing: 0.01em;
}


/* LISTAS */

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}


/* HEADINGS */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Butler_Light', serif;
  padding: 0;
  margin: 0;
  font-weight: normal;
  letter-spacing: .01em;
}

h1 { font-size: 4.5rem; }
h2 { font-size: 10rem; text-transform: uppercase; margin-bottom: 20px;}
h3 { font-size: 4rem; }
h4 { font-size: 2.8rem; }
h5 { font-size: 2.6rem; }
h6 { font-size: 2.4rem; }


/* FORM */

textarea {
  resize: none;
}


/* ACCESIBILIDAD (mejorado) */

:focus:not(:focus-visible) {
  outline: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

@font-face {
    font-family: 'Butler_Light';
    src: url('fonts/Butler_Light.eot');
    src: url('fonts/Butler_Light.eot') format('embedded-opentype'),
         url('fonts/Butler_Light.woff2') format('woff2'),
         url('fonts/Butler_Light.woff') format('woff'),
         url('fonts/Butler_Light.ttf') format('truetype'),
         url('fonts/Butler_Light.svg#Butler_Light') format('svg');
}
@font-face {
    font-family: 'PlusJakartaSansRegular';
    src: url('fonts/PlusJakartaSansRegular.eot');
    src: url('fonts/PlusJakartaSansRegular.eot') format('embedded-opentype'),
         url('fonts/PlusJakartaSansRegular.woff2') format('woff2'),
         url('fonts/PlusJakartaSansRegular.woff') format('woff'),
         url('fonts/PlusJakartaSansRegular.ttf') format('truetype'),
         url('fonts/PlusJakartaSansRegular.svg#PlusJakartaSansRegular') format('svg');
}
@font-face {
    font-family: 'PlusJakartaSansBold';
    src: url('fonts/PlusJakartaSansBold.eot');
    src: url('fonts/PlusJakartaSansBold.eot') format('embedded-opentype'),
         url('fonts/PlusJakartaSansBold.woff2') format('woff2'),
         url('fonts/PlusJakartaSansBold.woff') format('woff'),
         url('fonts/PlusJakartaSansBold.ttf') format('truetype'),
         url('fonts/PlusJakartaSansBold.svg#PlusJakartaSansBold') format('svg');
}



/* ======================================
HEADER
====================================== */

.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #eeebe7;
}


	/* CONTENEDOR */


.site-header .container {
  width: 90%;
  max-width: 1625px;
  margin: 0 auto; 
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 40px 0; /* en vez de height fijo */
  transition: padding 0.3s ease;
}


	/* LOGO */

.site-logo a {
  display: inline-block;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: #000;
}
.site-logo img {
  max-height: 108px;
  transition: max-height 0.3s ease;
}
.site-logo h1{
  text-align: left;
  font-size: 1rem;
  text-indent: -9000px;
}

	/* NAV */
.site-nav {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.site-nav ul {
  display: flex;
  gap: 3rem;
}

.site-nav li {
  list-style: none;
}

.site-nav a {
  font-family: 'PlusJakartaSansBold', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
}


	/* HOVER */

.site-nav a:hover {
  opacity: 0.7;
}


/*Sticky*/
.site-header.is-scrolled .container {
  padding: 0;
}
  .site-header.is-scrolled .site-logo img {
    max-height: 60px;
    padding: 15px 0 0;
  }
  .site-header.is-scrolled .site-nav a {
    font-size: 1.2rem;
  }
  .site-header.is-scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }


  
/*menu mobile*/
body.menu-open {
  overflow: hidden;
}
.menu-toggle {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 1001; /* arriba del overlay */
  background: none;
  border: none;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { bottom: 0; }

/*animacion*/
.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}



/* ======================================
   HERO
====================================== */

.home-home{
  padding: 50px 0 0;
}

.home-hero {
  position: relative;
  width: 90%;
  max-width: 1625px;
  margin: auto;
  overflow: hidden;
}


/* MEDIA (VIDEO) */

.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 816;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.hero-overlay h3 {
  color: #fff;
  max-width: 800px;
  text-transform: none;
  padding-left: 70px;
  max-width: 390px;
}


/* ======================================
   HOME INTRO
====================================== */

.home-intro {
  padding: 30px 0;
}

.home-intro .container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.intro-content h3 {
	text-transform: uppercase;
}
.intro-content p {
	font-size: 1.6rem;
	margin: 8px;	
	text-transform: uppercase;
}


/* CTA COMO BOTÓN */

.intro-content a {
  display: inline-block;
  background: #222;
  color: #fff;
  padding: 1rem 3rem 1.2rem;
  margin-top: 30px;
  border-radius: 25px;
  font-size: 1.7rem;
  text-transform: none;
  letter-spacing: 0.01em;
  transition: 0.3s ease;
}

.intro-content a:hover {
  background: #000;
}


/* ======================================
   DESTACADOS GRID
====================================== */

.home-destacados {
  padding: 60px 0;
}

.home-destacados .container {
  width: 90%;
  max-width: 1625px;
  margin: 0 auto;
}


/* GRID */

.destacados-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto; /* base */
  gap: 10px;
}


/* ITEMS */

.grid-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* POSICIONAMIENTO */

.item-1 {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}

.item-2 {
	grid-column: 3;
    grid-row: 1;
}

.item-3 {
	grid-column: 3;
	grid-row: 2;
}

.item-4 {
	grid-column: 1;
	grid-row: 3;
}

.item-5 {
	grid-column: 1;
	grid-row: 4;
}

.item-6 {
    grid-column: 2 / span 2;
    grid-row: 3 / span 2;
}


/* CONTENEDOR */

.grid-item {
  position: relative;
  overflow: hidden; /* CLAVE */
}


/* LINK */

.grid-item a {
  display: block;
  width: 100%;
  height: 100%;
}


/* IMG */

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}


/* HOVER */

.grid-item:hover img {
  transform: scale(1.03);
}


/* =========================
   BLOQUE TEXTO + CTA
========================= */

.home-bloque-texto {
  padding: 0;
  text-align: center;
}

/* GRID */

.home-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

/* COLUMNAS */

.home-story-col {
  font-size: 16px;
  line-height: 1.6;
}

/* columna central (protagonista) */
.home-story-col-center {
  font-size: 26px;
  line-height: 1.4;
}

/* WYSIWYG dentro de columnas */

.home-story-col p {
  font-family: 'Butler_Light', serif;
  font-size: 4rem;
  margin-bottom: 0.8em;
  line-height: 1.1em;
}
.home-story-col-left p{
  line-height: 1.5em;
}
.home-story-col-center p{
  line-height: 1.3em;
}

.home-story-col strong {
  font-weight: 100;
  font-size: 1.75em;
}

/* CTA */

.home-story-cta {
  max-width: 600px;
  margin: 0 auto;
}

/* texto CTA */

.home-story-cta p {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* link CTA como botón */

.home-story-cta a {
    display: inline-block;
    background: #222;
    color: #fff;
    padding: 1rem 3rem 1.2rem;
    margin-top: 40px;
    border-radius: 25px;
    font-size: 1.7rem;
    text-transform: none;
    letter-spacing: 0.01em;
    transition: 0.3s ease;
}

/* hover sutil */

.home-story-cta a:hover {
  opacity: 0.85;
}



/* =========================
   BLOQUE ABOUT
========================= */

.home-about {
  width: 90%;
  max-width: 980px;
  margin: 150px auto 100px;
}

.home-about-grid {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGEN */

.home-about-media img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* CONTENIDO */

.home-about-content {
  max-width: 500px;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* TÍTULO */

.home-about-title {
	background: url(imagenes/bienvenidos.svg) no-repeat left top;
	background-size: 220px;
	width: 100%;
	height: 75px;
	text-align: left;
}

.home-about-title h3,
.home-about-signature p{
	text-indent: -9000px;
}

/* TEXTO */

.home-about-text {
	text-align: left;
}
.home-about-text p {
  margin-bottom: 1em;
  font-size: 15px;
  line-height: 1.6;
}

/* FIRMA */

.home-about-signature {
	background: url(imagenes/johi.svg) no-repeat left top;
	background-size: 90px;
	width: 100%;
	height: 75px;
	text-align: left;
}

.home-about-signature img {
  max-width: 160px;
  height: auto;
  display: block;
}




.home-link-films {
    display: inline-block;
    background: #222;
    color: #fff;
    padding: 1rem 3rem 1.2rem;
    margin-top: 50px;
    border-radius: 25px;
    font-size: 1.7rem;
    text-transform: none;
    letter-spacing: 0.01em;
    transition: 0.3s ease;
}
.home-link-films:hover {
  opacity: 0.85;
  color: #fff;
}



/* =========================
   BLOQUE CTA
========================= */

.home-cta {
  padding: 0;
  text-align: center;
}
.home-cta h3{
	line-height: 1.1em;
	margin-bottom: 40px;
}
.home-cta .container{
  width: 90%;
  max-width: 800px;
  margin: 0 auto 100px;
}
.home-cta a{
	display: inline-block;
    background: #222;
    color: #fff;
    padding: 1rem 3rem 1.2rem;
    margin-top: 10px;
    border-radius: 25px;
    font-size: 1.7rem;
    text-transform: none;
    letter-spacing: 0.01em;
    transition: 0.3s ease;
}
.home-cta a:hover {
    opacity: 0.85;
    color: #fff;
}

/* =========================
   BLOQUE XV
========================= */

.home-xv {
  padding:100px 0;
  text-align: center;
}
.home-xv .container {
    width: 90%;
    max-width: 1550px;
    margin: 55px auto;
}
.home-cta-xv {
  margin: 50px auto 0;
}
.home-cta-xv p{
  font-size: 1.7rem;
}
.home-xv .container p:last-child{
  margin: 0;
}
.home-xv .container .home-link-films{
  margin-top: 35px;
}



/* =========================
   FOOTER
========================= */

.site-footer{
  background: #e2ddd5;
  width: 100%;
  padding: 80px 0 0;
}
.cierre-footer{

}
.cierre-footer h3{
  font-size: 5rem;
  text-transform: uppercase;
}
.cierre-footer p{
  margin-bottom: 30px;
}
.footer-cta{
    display: inline-block;
    background: #222;
    color: #fff;
    padding: 25px 50px;
    margin-top: 30px;
    border-radius: 35px;
    font-size: 1.7rem;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    transition: 0.3s ease;
    opacity: 1;
}
.footer-cta:hover{
    opacity: 0.85;
    color: #fff;
}

.copy-footer{
  background: url(imagenes/logo-johi-olaizola.png) no-repeat center top;
  background-size: auto;
  padding: 150px 0 10px;
  margin: 110px 0 0;
}

/*************/


/* =========================
   PARTIAL VIDEOS
========================= */

/* INTRO */

.home-videos-intro {
  max-width: 800px;
  margin: 0 auto 60px;
}

.home-videos-intro p {
  margin-bottom: 1em;
  font-size: 15px;
  line-height: 1.6;
}

.videos {
  padding: 100px 0;
}
.videos .container{
  width: 90%;
  max-width: 1550px;
  margin: auto;
}


/* GRID */

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 45px;
}

/* ITEM */

.video-item {
  display: flex;
  flex-direction: column;
}

/* TÍTULO */

.video-title {
  font-size: 2.7rem;
  text-align: left;
  text-transform: none;
  letter-spacing: .01em;
  margin-bottom: 3px;
}

.video-title a {
  text-decoration: none;
  color: inherit;
}

/* CARD */

.video-card {
  display: block;
}

/* THUMB */

.video-thumb {
  position: relative;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

/* OVERLAY */

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PLAY */

.video-play {
  width: 30px;
  height: 30px;
  background: url(imagenes/play.svg) no-repeat center;
  background-size: contain;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* TEXTO HOVER */

.video-text {
  position: absolute;
  font-size: 1.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  color: #fff;
}

/* HOVER */

.video-card:hover .video-play {
  opacity: 0;
  transform: scale(0.8);
}

.video-card:hover .video-text {
  opacity: 1;
  transform: translateY(0);
}

.video-thumb img {
  transition: filter 0.25s ease;
}

.video-card:hover .video-thumb img {
  filter: brightness(0.6);
}



/* Category */
.archive-header {
  padding: 0 0 80px;
}
.archive-header h2{
margin: 0;
}
.archive-header p{
text-transform: uppercase;
margin: 0;
}

  /*paginacion*/
.archive-pagination {
  margin-top: 60px;
  text-align: center;
}

.archive-pagination a,
.archive-pagination span {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 14px;
  text-decoration: none;
  color: #222;
}

.archive-pagination .current {
  font-weight: bold;
  border-bottom: 2px solid #222;
}



/* =========================
   PARTIAL TESTIMONIO
========================= */

.page-testimonios{
  padding: 0 0 80px;
}
.page-testimonios .archive-header{
  padding: 50px 0 70px;
}

.home-testimonio {
  padding: 100px 0 70px;
  text-align: center;
}

/* HEADER (WYSIWYG) */

.home-testimonio-header {
  max-width: 600px;
  margin: 0 auto 50px;
}

.home-testimonio-header h3 {
  margin-bottom: 10px;
}

/* ITEM */

.testimonio-item {
  display: grid;
  grid-template-columns: minmax(120px, 655px) 1fr;
  gap: 30px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 40px;
  text-align: left;
}

.page-testimonios .testimonio-item{
  margin: 0 auto 70px;
}
/* IMAGEN */

.testimonio-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 25px;
}

/* TEXTO */
.testimonio-content{
	display:flex;
	flex-direction: column;
    justify-content: center;
    height: 100%;	
}

.testimonio-text p {
  margin: 0 0 1em;
}

/* NOMBRE */

.testimonio-name h3 {
  font-size: 2.7rem;
  margin-top: 10px;
}

.testimonios-list .testimonio-item:nth-child(even) {
  grid-template-columns: 1fr minmax(120px, 655px);
}
.testimonios-list .testimonio-item:nth-child(even) .testimonio-media {
  order: 2;
}
.testimonios-list .testimonio-item:nth-child(even) .testimonio-content {
  order: 1;
}

/* CTA */

.home-testimonio-cta a {
  display: inline-block;
  padding: 8px 15px 10px;
  border-radius: 5px;
  background: #eeebe7;
  text-decoration: none;
  font-size: 1.7rem;
  color: #000;
  border: 1px solid #797979;
}
.home-testimonio-cta a:hover{
	color: #fff;
	background: #222;
}

/*page Testimonios*/

.archive-intro p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 1em;
}


/* =========================
   404
========================= */

.error-404 {
  padding: 120px 0;
  text-align: center;
}

.error-404-content {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.error-404 p {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

/* Botón reutilizable (si ya tenés uno mejor usar ese) */
.error-404 .btn {
  display: inline-block;
  padding: 8px 15px 10px;
  border-radius: 5px;
  background: #eeebe7;
  text-decoration: none;
  font-size: 1.7rem;
  color: #000;
  border: 1px solid #797979;
}

.error-404 .btn:hover {
	color: #fff;
	background: #222;
}


/* =========================
   FILM SINGLE
========================= */

.single-video {
  padding: 50px 20px;
}

.single-video-article {
  max-width: 1100px;
  margin: 0 auto;
}

.single-video-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.single-video-media {
  margin-bottom: 40px;
}

.video-embed{    
  background-color: #eeebe7;
}

/* Responsive embed limpio */
.single-video-media iframe {
  width: 100%;
  aspect-ratio: 21 / 9;
  height: auto;
  display: block;
}

.single-video-content {
  margin: 0 auto;
}


/* =========================
   PAGE
========================= */

.page-default {
  padding: 60px 0 100px;
}

.page-article {
  width: 90%;
  max-width: 850px;
  margin: 0 auto;
}

.page-content p{
  font-size: 1.7rem;
}
.page-content img{
  border-radius: 20px;
  margin-bottom: 50px;
}


/* =========================
   CONTACTO
========================= */
.contact-page {
  padding: 80px 50px;
}

.contact-wrap {
  max-width: 1220px;
  margin: 0 auto;
}

/* HEADER */

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-title{
  margin: 0;
}

.contact-subtitle {
  margin: 0 auto;
}
.contact-subtitle p{
  font-size: 1.7rem;
  margin: 0;
}

/* GRID */

.contact-grid {
  display: grid;
  grid-template-columns: 410px 1fr;
  gap: 120px;
  align-items: center;
  margin-bottom: 80px;
}

/* IMAGE */

.contact-media img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* FORM BASE (CF7 RESET) */

.contact-form{
  text-align: left;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  padding: 8px 0 2px;
  background: transparent;
  outline: none;
  font-family: 'PlusJakartaSansRegular', sans-serif;
  font-size: 16px;
}

.contact-form textarea {
  height: 160px;
  resize: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form select::placeholder {
  color: #000;
}

.wpcf7 form .wpcf7-response-output {
  border: none !important;
  box-shadow: none;
}
.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border: none !important;
}

/* botón */

.contact-form input[type="submit"] {
  margin-top: -10px;
  width: auto;
  padding: 10px 35px;
  border: none;
  border-radius: 5px;
  background: #333;
  color: #fff;
  letter-spacing: .1em;
  cursor: pointer;
}

/* INFO */

.contact-info {
  text-align: center;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 60px;
  list-style: none;
  max-width: 900px;
  padding: 0;
  margin: 0 auto;
}

.contact-list li {
  position: relative;
  padding-left: 40px;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  letter-spacing: .01em;
}

.contact-list li::before {
  content: "";
  width: 30px;
  height: 30px;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: right center;
}

li.contact-email::before {
  background-image: url('imagenes/correo.svg');
}

li.contact-phone::before {
  background-image: url('imagenes/telefono.svg');
}

li.contact-location::before {
  background-image: url('imagenes/ubicacion.svg');
}

li.contact-instagram::before {
  background-image: url('imagenes/instagram.svg');
}

li.contact-youtube::before {
  background-image: url('imagenes/youtube.svg');
  width: 39px;  
}

li.contact-vimeo::before {
  background-image: url('imagenes/vimeo.svg');  
}



/*OTROS*/
.whatsapp-footer{
  display:block;
	width: 60px;
	height: 60px;
	position:fixed;
	bottom: 25px;
	right: 30px;
	z-index: 600;
}
a#scroll-to-top{
  bottom: 100px;
  right: 43px;
}

/* ================================
   REVEAL (SCROLL ANIMATIONS)
================================ */

/* Estado inicial */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* Estado visible */
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-fade {
  transform: none;
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }


/*MediaQueries*/

@media (max-width: 1600px){
  .site-logo{
    max-width: 400px;
  }
}

@media (max-width: 1450px){
  h2{
    font-size: 8rem;
  }
  .site-logo{
    max-width: 350px;
  }
  .site-nav a{
    font-size: 1.3rem;
  }
  .home-story-col p{
    font-size: 3.3rem;
  }
}

@media (max-width: 1250px){
  .site-logo{
    max-width: 300px;
  }
  .site-nav a{
    font-size: 1.3rem;
  }
  .site-nav ul {
    gap: 2rem;
  }
  .home-testimonio {
    padding: 40px 0 70px;
  }
  .testimonio-item{
    grid-template-columns: minmax(120px, 500px) 1fr;
  }
  .testimonio-text p{
    font-size: 1.6rem;
  }
  .testimonio-name h3 {
    font-size: 2.4rem;
  }
}

@media (max-width: 1150px) {
  h2{
    font-size: 6.5rem;
  }
  .home-story-col p{
    font-size: 2.7rem;
  }
  .video-title {
    font-size: 2.2rem;
  }
  .home-testimonio {
      padding: 0px 0 70px;
  }
  .home-testimonio .container{
    max-width: 650px;
    margin: auto;
  }
  .testimonio-item,
  .testimonios-list .testimonio-item:nth-child(even){
    grid-template-columns: 1fr;
  }
  .testimonios-list .testimonio-item:nth-child(even) .testimonio-media{
    order: 1;
  }
  .testimonios-list .testimonio-item:nth-child(even) .testimonio-content{
    order: 2;
  }
  .contact-grid {
    grid-template-columns: 310px 1fr;
    gap: 50px;  
  }  
}


@media (max-width: 768px) {
  h2{
    font-size: 5rem;
  }
  h3{
    font-size: 3rem;
  }
  .destacados-grid {
    gap: 3px
  }
  .home-story-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .home-story-col {
    font-size: 15px;
  }
  .home-story-col-center {
    font-size: 20px;
  }  
  .home-story-cta {
    margin-top: 30px;
  }  
  .home-story-cta p {
    font-size: 1.5rem;
  }  
  .home-about {
    margin: 130px auto 80px;
  }
  .home-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 300px;
    margin: auto;
  }
  
  .home-about-content {
    max-width: 100%;
    gap: 20px;
  }
  .videos-grid{
    grid-template-columns: 1fr;
  }
  .videos .container{
    max-width: 550px;
  }

  .home-story-cta a,
  .home-link-films,
  .home-cta a,
  .home-xv .container .home-link-films{
    font-size: 1.5rem;
  }
  .home-cta .container {
    margin: 0 auto 20px;
  }
  .home-xv .container{
    margin: 20px auto;
    max-width: 550px;
  }
  .cierre-footer h3 {
    font-size: 4rem;
  }
  .footer-cta{
    padding: 20px 35px;
    font-size: 1.5rem;
  }
  .copy-footer{
    background-size: 330px;
    padding: 110px 0 10px;
    margin: 80px 0 0;
  }
  .videos {
    padding: 30px 0;
  }
  .archive-header {
      padding: 0 0 30px;
  }  
  .contact-list {
    flex-direction: column;
    align-items: center;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

}
@media (max-width:600px) {
  h2{
    font-size: 4rem;
    margin-bottom: 5px;
  }
  p{
    font-size: 1.6rem;
  }
  .site-logo {
        max-width: 220px;
    }
  .testimonio-text p{
    font-size: 1.5rem;
  }  
  .copy-footer p{
    font-size: 1.4rem;
  }  
  .contact-list li{
    font-size: 1.5rem;
  }
  .contact-list li::before{
    width: 23px;
  }
  li.contact-youtube::before {
    width: 29px;
  }
  .home-link-films {
    margin-top: 30px;
  }
  .videos {
    padding: 30px 0 80px;
  }

  .hero-overlay{
    text-align: center;
    flex-direction: column;
    justify-content: flex-end;
  }
  .hero-overlay h3{
    font-size: 1.9rem;
    padding-left: 0;
    padding-bottom: 15px;
    max-width: 100%;
  }
  
  .whatsapp-footer{
    width: 40px;
    height: 40px;
    bottom: 25px;
    right: 10px;
  }
  a#scroll-to-top{
    bottom: 75px;
    right: 16px;
    width: 25px;
    height: 25px;
  }
}
@media (max-width:480px) {
  h3{
    font-size: 2.6rem;
  }
  .home-home {
    padding: 30px 0 0;
    }
  .home-destacados {
    padding: 60px 0 0px;
  }
  .intro-content p {
    font-size: 1.5rem;
  }
  .cierre-footer h3 {
    font-size: 3.5rem;
  }  
  .copy-footer{
    background-size: 270px;
  }  
}


            @media (max-width: 1150px) {

              .menu-toggle {
                display: block;
              }

              .site-nav {
                position: fixed;
                inset: 0;
                background: #eeebe7;

                display: flex;
                justify-content: center;
                align-items: center;

                opacity: 0;
                pointer-events: none;
                transform: translateY(-10px);
                visibility: hidden;
                transition: opacity 0.3s ease, transform 0.3s ease;

                z-index: 1000;

                will-change: opacity, transform;
              }

              .site-nav ul {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
              }

              /* estado abierto */
              body.menu-open .site-nav {
                opacity: 1;
                pointer-events: auto;
                transform: translateY(0);
                visibility: visible;
              }

              /* opcional: agrandar links en mobile */
              .site-nav a {
                font-size: 2rem;
                font-family: 'PlusJakartaSansRegular', sans-serif;
              }
              .menu-open .site-header .container{
                width: calc(90% - 30px);
              }
            }

            @media (min-width: 1151px) {

              .site-nav {
                position: static;
                inset: auto;
                opacity: 1;
                pointer-events: auto;
                transform: none;
                visibility: visible;
                background: none;
              }
              
            }
            
            
            

  /* MOBILE */
  
  @media (max-width: 768px) {
    .contact-title {
      font-size: 40px;
    }
  
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }
}

/*accecibilidad Reveal*/
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}