/* ============================= */
/* RESET Y VARIABLES */
/* ============================= */

@font-face {
  font-family: 'FuenteRitvales';
  src:
    url('../Font/tomat.woff2') format('woff2'),
    url('../Font/tomat.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-red: #e62017;
  --primary-yellow: #ffcc00;
  --dark: #111;
  --light: #fff;
  --gray: #f5f5f5;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body, button, input, textarea {
  font-family: 'FuenteRitvales', sans-serif;
  letter-spacing: 2px;
}

/* ==========================
   NAVBAR GENERAL --------------------------------------------------------------------------------------------------------------------
========================== */

.custom-navbar{
  background: #000000;
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}

/* ==========================
   LOGO
========================== */

.logo-navbar{
  height: 30px;
  width: auto;
}

/* ==========================
   MENU CENTRAL
========================== */

.menu-central .nav-link{
  color: #ffffff;
  font-weight: 600;
  margin: 0 10px;
  padding: 10px 15px;
  border-radius: 10px;
  transition: all .3s ease;
}

.menu-central .nav-link:hover{
  background: rgba(255,255,255,.15);
}

/* Sección activa */

.menu-central .nav-link.active{
  background: #82ff48;
  color: #000000;
}

/* ==========================
   BOTONES DERECHA
========================== */

.btn-comprar{
  background: #000000;
  color: white;
  border: 2px solid #82ff48;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  
}

.btn-comprar:hover{
  background: #82ff48;
  color: black;
}

/* ==========================
   DROPDOWN
========================== */

.dropdown-menu{
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.20);
}

.dropdown-item{
  padding: 12px 20px;
}

.dropdown-item:hover{
  background: #82ff48;
  color: black;
}


/* ==========================
   VIDEO --------------------------------------------------------------------------------------------------------------------
========================== */

.video-banner{
    position: relative;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-banner::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 2;
}

.titulo-evento{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.titulo-evento img{
    width: 1200px;
    max-width: 95%;
    height: auto;
}


/* ==========================
   Información General --------------------------------------------------------------------------------------------------------------------
========================== */

.general{
  padding:30px 40px;
  background: #7e3bed;
}

.info-general{
  max-width:1500px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:80px;

  justify-items:center;
  align-items:center;
  transition:0.3s ease;
}

.info-general img{
  width:100%;
  height:auto;
  transition:transform 0.3s ease;
}

.info-general img:hover{
  transform:scale(1.08);
}


/* ==========================
   Precios y Localidades --------------------------------------------------------------------------------------------------------------------
========================== */

.pricing-section{
    background-image: url("../img/Background-Seccion-Localidades.png");
    background-size: cover;
    background-position: center;
	background-repeat:no-repeat;
    padding: 100px 0;
}

.pricing-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-img{
    display: block;
    width: 100%;
    margin: 0 auto 40px auto;
}

.info-img-2{
    display: block;
    width: 100%;
    margin: 20px auto 0px auto;
}

.pricing-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ==================================
   ACORDEÓN
================================== */

.pricing-item{
    background: rgba(0,0,0,.75);
    border: 2px solid #82ff48;
    border-radius: 12px;
    margin-bottom: 18px;
    overflow: hidden;
}

.pricing-item summary{
    list-style: none;
    cursor: pointer;
    padding: 20px 25px;
    color: white;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    transition: .3s;
}

.pricing-item summary:hover{
    background: rgba(130,255,72,.15);
}

.pricing-item summary::-webkit-details-marker{
    display:none;
}

.pricing-item summary::after{
    content:"+";
    position:absolute;
    right:25px;
    top:50%;
    transform:translateY(-50%);
    color:#82ff48;
    font-size:30px;
    font-weight:700;
}

.pricing-item[open] summary::after{
    content:"−";
}

/* ==================================
   CONTENIDO
================================== */

.pricing-content{
    padding: 0 20px 20px 20px;
}

/* ==================================
   TABLA
================================== */

.price-table{
    width:100%;
    border-collapse:collapse;
    margin-top:15px;
}

.price-table th{
    background:#82ff48;
    color:#000;
    padding:12px;
    text-align:center;
    font-size:15px;
}

.price-table td{
    padding:12px;
    text-align:center;
    color:white;
    border-bottom:1px solid rgba(255,255,255,.15);
}

.price-table tr:last-child td{
    border-bottom:none;
}

/* ==================================
   IMAGEN
================================== */

.pricing-image img{
    width:85%;
    display:block;
}

.compra-localidades{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.compra-localidades .dropdown{
    margin: 0;
}

.btn-localidad{
    background: #000;
    color: #fff;
    border: 2px solid #82ff48;
    border-radius: 12px;
    padding: 14px 25px;
    min-width: 220px;
    font-size: 18px;
    font-weight: 700;
    transition: all .3s ease;
}

.btn-localidad:hover{
    background: #82ff48;
    color: #000;
    box-shadow: 0 0 20px rgba(130,255,72,.7);
}

.dropdown-localidad{
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

.dropdown-localidad .dropdown-item{
    padding: 12px 20px;
    font-size: 16px;
}

.dropdown-localidad .dropdown-item:hover{
    background: #82ff48;
    color: #000;
}


/* =============================
   Video --------------------------------------------------------------------------------------------------------------------
 ============================= */

.video{
  background-image: url("../img/Background-Seccion-Video.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  padding:20px 20px;
}

.youtube{
  padding: 70px;
  display:flex;
  justify-content:center;
  align-items:center; 		
}

.titulos{
    display: block;
    width: 70%;
    margin: 40px auto 20px auto;
	}


/* =============================
   Video-Sets --------------------------------------------------------------------------------------------------------------------
 ============================= */

.videos-section{
  background-image: url("../img/Background-Seccion-Video-sets.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  padding: 100px 0;
}

/* TITULO */

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

.titulo-videos{
    max-width: 500px;
    width: 40%;
    height: auto;
}

/* GRID */

.videos-grid{
    width: 90%;
    max-width: 1600px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */

.video-card{
    text-align: center;
}

/* VIDEO */

.video-wrapper{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */

    border-radius: 25px;
    overflow: hidden;

    box-shadow: 0 10px 35px rgba(0,0,0,.25);
}

.video-wrapper iframe{
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    border: 0;
}

/* IMAGEN DEBAJO */

.video-label{
    margin-top: 10px;
    max-width: 350px;
    width: 100%;
    height: auto;

    display: block;
    margin-left: 0;
    margin-right: auto;
}


/* =============================
   Video Televisores --------------------------------------------------------------------------------------------------------------------
 ============================= */

.video-info-section{
    position: relative;
    min-height: 1100px;
    overflow: hidden;
}

/* VIDEO */

.video-bg{
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    z-index: 1;
}

/* IMAGEN SUPERIOR DERECHA */

.floating-image{
    position: absolute;
    top: 80px;
    right: 150px;
    z-index: 3;
}

.floating-image img{
    width: 800px;
    max-width: 100%;
    height: auto;
}

/* =============================
   Galeria de Imagenes --------------------------------------------------------------------------------------------------------------------
 ============================= */

.gallery-section{
    background-image: url("../img/Background-Seccion-Localidades.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
}

.gallery-title{
    text-align: center;
    margin-bottom: 60px;
}

.gallery-title img{
    width: 1000px;
    max-width: 90%;
}

/* GRID */

.gallery-grid{
    width: 90%;
    max-width: 1800px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/* COLUMNA */

.gallery-column{
    position: relative;
}

/* SWIPER */

.swiper-wrapper{
    display:flex !important;
}

.swiper-slide{
    flex-shrink:0 !important;
    width:100% !important;
}

.gallery-column .swiper{
    width: 100%;
    height:500px;
    border-radius: 25px;
    overflow: hidden;
    border: 3px solid #82ff48;
}

.gallery-column .swiper::before{
    content: "";
    position: absolute;
    inset: 0;

    padding: 3px;
    border-radius: 25px;

    background: linear-gradient(
        135deg,
        #82ff48,
        #00ffd5,
        #82ff48
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
    z-index: 20;
}

.gallery-column .swiper-slide{
    height:500px;
}

.gallery-column .swiper-slide img{
    width: 100%;
    height:500px;;
    object-fit: cover;
}


/* FLECHAS */

.swiper-button-next,
.swiper-button-prev{
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,.6);
    border-radius: 50%;
    color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size: 18px;
    font-weight: bold;
}

.gallery-label{
    display:block;
    width:30%;
    margin-top:30px;
}

/* =============================
   Preguntas Frecuentes --------------------------------------------------------------------------------------------------------------------
 ============================= */

/* Variables editables */

:root{

    --faq-texto: #000000;

    --faq-hover: #7e3bed;
    --faq-hover-text: #ffffff;

    --faq-fondo-item: #d9f2f0;
    --faq-fondo-respuesta: rgba(255,255,255,.05);

}

/* SECCIÓN */

.faq-section{

    background-image: url("../img/Backgraund-Faqs.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
}

/* TÍTULO */

.faq-title{

    text-align: center;
    margin-bottom: 60px;
}

.faq-title img{

    width: 700px;
    max-width: 70%;
}

/* CONTENEDOR */

.faq-container{

    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ACORDEÓN */

.faq-item{

    border-radius: 10px;
    overflow: hidden;
    background: var(--faq-fondo-item);
    backdrop-filter: blur(10px);
    transition: .3s ease;
}

/* PREGUNTA */

.faq-item summary{

    list-style: none;
    cursor: pointer;
    color: var(--faq-texto);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 25px 30px;
    position: relative;
    transition: .3s ease;
}

/* Ocultar flecha nativa */

.faq-item summary::-webkit-details-marker{
    display:none;
}

/* Hover */

.faq-item summary:hover{

    background: var(--faq-hover);
    color: var(--faq-hover-text);
}

/* Icono + */

.faq-item summary::after{

    content:"+";
    position:absolute;
    right:30px;
    top:50%;
    transform:translateY(-50%);
    font-size:2rem;
    font-weight:700;
    transition:.3s ease;
}

/* Rotación cuando abre */

.faq-item[open] summary::after{

    transform:
    translateY(-50%)
    rotate(45deg);
}

/* RESPUESTA */

.faq-content{

    padding: 0 30px 30px;
    color: var(--faq-texto);
    line-height: 1.8;
    background: var(--faq-fondo-respuesta);
    font-size: 1rem;
}

/* Efecto al abrir */

.faq-item[open]{

    box-shadow:
    0 0 20px rgba(130,255,72,.25);
}

/* =============================
   Footer --------------------------------------------------------------------------------------------------------------------
 ============================= */

.footer-section{
    background: #7e3bed;
    padding: 30px 20px;
}

.footer-container{
    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    align-items: center;
}

.footer-item{
    text-align: center;
}

.footer-item img{
    max-width: 180px; /* Ajusta tamaño */
    width: 100%;
    height: auto;
    transition: all .3s ease;
}

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

/* ==========================
   MOBILE
========================== */

@media(max-width:991px){
	

  .menu-central{
    margin-top: 20px;
    text-align: center;
  }

  .menu-central .nav-item{
    margin-bottom: 10px;
  }

  .navbar-pagos{
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .navbar-pagos .dropdown{
    width: 100%;
  }

  .navbar-pagos .btn{
    width: 100%;
  }
	
/* VIDEO */
	
.video-banner{
        min-height: 600px;
    }

.titulo-evento{
     width: 100%;
}
	
.titulo-evento img{
	width: 100%;
  	max-width: 100%;
}
	
/*Información General*/

  .info-general{
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  padding:0;
  align-items:center; 
  justify-items:start;
  }

  .info-general img{
  width:100%;
  height:auto;
  display:block;
}
	
/* Precios y Localidades*/
	
 .pricing-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .pricing-image{
        order:-1;
    }

    .pricing-title{
        text-align:center;
        font-size:28px;
    }

    .pricing-item{
        margin-bottom:12px;
    }

    .pricing-item summary{
        font-size:16px;
        padding:15px 45px 15px 15px;
    }

    .pricing-content{
        padding:15px;
    }

    /* TABLA RESPONSIVE */

    .price-table,
    .price-table thead,
    .price-table tbody,
    .price-table tr,
    .price-table th,
    .price-table td{
        display:block;
        width:100%;
    }

    .price-table thead{
        display:none;
    }

    .price-table tr{
        background:rgba(255,255,255,.05);
        border:1px solid rgba(255,255,255,.15);
        border-radius:10px;
        margin-bottom:15px;
        padding:10px;
    }

    .price-table td{
        border:none;
        text-align:left;
        padding:8px 0;
        color:white;
    }

    .price-table td:nth-child(1)::before{
        content:"Etapa: ";
        color:#82ff48;
        font-weight:bold;
    }

    .price-table td:nth-child(2)::before{
        content:"Precio: ";
        color:#82ff48;
        font-weight:bold;
    }

    .price-table td:nth-child(3)::before{
        content:"Servicio: ";
        color:#82ff48;
        font-weight:bold;
    }

    .price-table td:nth-child(4)::before{
        content:"Aforo: ";
        color:#82ff48;
        font-weight:bold;
    }
	
	.botones-compra{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
	
/* Video */
	
	.youtube iframe{
	width:150%;
	max-width:1600px;
	height:auto;
	}
	
	
	.titulos{
    display: block;
    width: 100%;
    margin: 10px auto 20px auto;
	}
	
/* Video-Sets */
	
	.titulo-videos{
    max-width: 500px;
    width: 70%;
    height: auto;
}
	
    .videos-section{
        padding: 60px 0;
    }

    .videos-grid{
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .video-label{
        max-width: 280px;
    }
	
/* Video Televisores */
	
    .video-info-section{
        min-height: 700px;
    }

    /* Imagen arriba centrada */

    .floating-image{
        top: 40px;
        right: 50%;
        transform: translateX(50%);
    }

    .floating-image img{
        width: 90vw;
        max-width: none;
    }

/* Galeria */
	
.gallery-grid{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-column .swiper{
        height: 400px;
    }

    .gallery-column .swiper-slide{
        height: 400px;
    }

    .gallery-column .swiper-slide img{
        height: 400px;
        object-fit: cover;
    }
	
.gallery-label{
        width:35%;
        margin:20px auto 0;
    }

/* Preguntas y Respuestas */

	.faq-section{

        padding: 80px 0;
    }

    .faq-title{

        margin-bottom: 40px;
    }

.faq-title img{

    width: 700px;
    max-width: 90%;
}

    .faq-container{

        width: 92%;
        gap: 15px;
    }

    .faq-item{

        border-radius: 15px;
    }

    .faq-item summary{

        font-size: 1rem;
        padding: 18px 20px;
    }

    .faq-item summary::after{

        right:20px;
        font-size:1.6rem;
    }

    .faq-content{

        padding: 0 20px 20px;
        font-size: .95rem;
        line-height: 1.7;
    }

/* Footer */
	
    .footer-section{
        padding: 30px 20px;
    }

    .footer-container{
        flex-direction: column;
        gap: 30px;
    }

    .footer-item img{
        max-width: 180px;
    }

}
	