/*

TemplateMo 583 Festava Live

https://templatemo.com/tm-583-festava-live

*/


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #F8CB2E;
  --secondary-color:              #EE5007;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #EE5007;
  --custom-btn-bg-hover-color:    #c01f27;
  --dark-color:                   #000000;
  --smp-color:                    #a34ba8;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #B22727;

  --body-font-family:             'Outfit', sans-serif;

  --h1-font-size:                 74px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --btn-font-size:                14px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--primary-color);
}

.nav-tabs h5 {
  color: var(--p-color); 
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5, 
.nav-tabs .nav-link:hover h5 {
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: var(--primary-color);
  padding-top: 12px;
  padding-bottom: 12px;
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 51px;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--dark-color);
}

.navbar {
  background: transparent;
  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {

position: relative;

overflow: hidden;

/* menos espacio arriba */
padding-top: 60px;

/* mantiene altura completa de pantalla */
height: calc(100vh - 51px);

}


.hero-section small {

color: var(--white-color);

text-transform: uppercase;

}


.hero-section .section-overlay {

z-index: 2;

opacity: 0.45;

}


/* sube el contenido interno */
.hero-section .container {

position: relative;

z-index: 2;

height: 100%;

/* reduce espacio inferior */
padding-bottom: 30px;

/* evita separación lateral */
padding-left: 3px !important;

/* centra verticalmente más arriba */
display: flex;

align-items: center;

}


.hero-section .container .row {

width: 100%;

}

/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-image: url('../images/teotihuacan1.jpg');
  background-color: #704010;
  background-repeat: repeat;   /* se repite como mosaico */
  background-size: 1200px;      /* cada bloque mide 200px */
  background-position: center;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
}

.about-text-wrap {
  position: relative;
}

.about-text-icon {
  background: var(--primary-color);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.about-text-info {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding: 35px;
}


/*---------------------------------------
  TICKET               
-----------------------------------------*/
.ticket-section {
  background-image: url('../images/nicholas-green-unsplash-blur.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 130px;
}

.ticket-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.ticket-form .form-check {
  position: relative;
  min-height: 52px;
  padding-left: 35px;
}

.ticket-form .form-check .form-check-label {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 12px;
  margin-left: 35px;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  ARTISTS              
-----------------------------------------*/
.artists-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.artists-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
}

.artists-thumb:hover .artists-hover {
  transform: translateY(0);
  opacity: 1;
}

.artists-hover {
  background-color: var(--primary-color);
  background-color: rgba(248, 203, 46, 0.75);
  border-radius: var(--border-radius-medium);
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  margin: 20px;
  padding: 35px;
  transition: all 0.5s ease;
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
}

.artists-hover p strong {
  color: var(--white-color);
  display: inline-block;
  min-width: 180px;
  margin-right: 20px;
}

.artists-hover p a {
  color: var(--secondary-color);
}

.artists-hover p a:hover {
  color: var(--white-color);
}

.artists-hover hr {
  margin: 1.5rem 0;
}


/*---------------------------------------
  SCHEDULE              
-----------------------------------------*/
.schedule-section {
  background-image: url('../images/nainoa-shizuru-unsplash-blur.jpg');
  background-color: #242424;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.schedule-section2 {
  background-image: url('../images/');
  background-color: #242424;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.table-responsive {
	filter: drop-shadow(2px 2px 4px #606060);
}

.schedule-table {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.schedule-table .bg-warning {
  background: #f0a5a5 !important;
}

.schedule-table thead th {
  background-color: var(--secondary-color);
}

.schedule-table th,
.schedule-table tr,
.schedule-table td {
  border-bottom-color: #363a3e;
  padding: 30px;
}

.schedule-table tr:last-child th,
.schedule-table tr:last-child td {
  border-bottom-color: transparent;
}

.schedule-table thead th {
  border-right: 1px solid #c7460a;
  border-bottom-color: transparent;
}

.schedule-table th + td {
  border-bottom: 0;
}

.schedule-table thead th:last-child {
  border-right-color: transparent;
}

.schedule-table .pop-background-image {
  background-image: url('../images/artists/joecalih-UmTZqmMvQcw-unsplash.jpg');
}

.schedule-table .rock-background-image {
  background-image: url('../images/artists/abstral-official-bdlMO9z5yco-unsplash.jpg');
}

.schedule-table .country-background-image {
  background-image: url('../images/artists/soundtrap-rAT6FJ6wltE-unsplash.jpg');
}

.table-background-image-wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  position: relative;
}

.schedule-table h3,
.schedule-table p {
  color: var(--white-color);
  position: relative;
  z-index: 2;
}


/*---------------------------------------
  PRICING              
-----------------------------------------*/
.pricing-thumb {
  border: 5px dotted var(--dark-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 50px;
}

.pricing-thumb h3 small {
  display: inline-block;
  font-size: var(--p-font-size);
  margin-right: 15px;
}

.pricing-list {
  column-count: 2;
  padding-left: 20px;
}

.pricing-list-item {
  line-height: normal;
  margin-right: 10px;
  margin-bottom: 10px;
}

.pricing-tag {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}

.pricing-tag span {
  font-size: 180%;
  line-height: normal;
}

.pricing-thumb .link-fx-1 {
  color: var(--primary-color);
}

.pricing-thumb .link-fx-1:hover {
  color: var(--link-hover-color);
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/

.site-footer {

background-color: var(--smp-color);

position: relative;

overflow: hidden;

/* REDUCE ALTURA TOTAL */
padding-top: 50px;
padding-bottom: 20px;

}


/* FRANJA SUPERIOR MORADA */

.site-footer-top {

background-color: var(--secondary-color);

background-image: url('../images/nainoa-shizuru-NcdG9mK3PBY-unsplash.jpg');

background-repeat: no-repeat;

/* ANTES 70px (muy grande) */
margin-bottom: 30px;

/* REDUCE ESPACIO SUPERIOR */
padding-top: 20px;
padding-bottom: 15px;

}


/* TITULOS */

.site-footer-title {

color: var(--primary-color);

margin-bottom: 10px;

}


/* TEXTOS */

.site-footer-link,
.copyright-text {

color: var(--white-color);

}

/* COPYRIGHT */

.copyright-text {

font-size: var(--copyright-font-size);

margin-bottom: 5px;

}

/*---------------------------------------
  LOGOS FOOTER
-----------------------------------------*/

.footer-logos{

display:grid;

grid-template-columns: repeat(6, 1fr);

gap:30px;

align-items:center;

justify-items:center;

margin-top:20px;

}


.footer-img{

max-height:85px;
max-width:140px;

width:auto;
height:auto;

object-fit:contain;

}


/* LOGOS GRANDES CONTROLADOS */

.logo-edomex{

max-height:105px;

}

.logo-mexico{

max-height:95px;

}


/* RESPONSIVE */

@media(max-width:992px){

.footer-logos{

grid-template-columns: repeat(3,1fr);

gap:25px;

}

}


@media(max-width:576px){

.footer-logos{

grid-template-columns: repeat(2,1fr);

gap:20px;

}

.footer-img{

max-height:65px;

}

}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before{
  animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg);
  }
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr, 
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}
.logo {
  height: 140px;   /* ajusta manualmente el tamaño */
  width: auto;    /* mantiene proporción */
  display: block;
}
.hero-section {
  padding: 300px 0 100px; /* separación superior e inferior */
  position: relative;
}

.section-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); /* oscurece el fondo */
}

.social-icon-link {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icon-link:hover {
  color: #f1c40f; /* efecto hover amarillo */
}
/* Separación entre título y bloque de info */
.date-wrap, .location-wrap, .social-share {
  margin-top: 10px; /* ajusta según lo que necesites */
}

/* Ajusta separación responsiva */
@media (max-width: 767px) {
  .hero-section h1 {
    margin-bottom: 20px; /* separación más pequeña en móviles */
  }
  .date-wrap, .location-wrap, .social-share {
    margin-top: 10px;
  }
}

@media (min-width: 768px) {
  .hero-section h1 {
    margin-bottom: 50px; /* separación más grande en pantallas grandes */
  }
  .date-wrap, .location-wrap, .social-share {
    margin-top: 20px;
  }
}
.services-info {
  text-align: center;   /* centra el contenido horizontalmente */
}
.services-info, 
.services-info h2, 
.services-info p, 
.services-info h6 {
  text-align: center; /* centra todo el contenido */
}
.gallery-img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.05); /* efecto zoom */
  box-shadow: 0 8px 20px rgba(255,255,255,0.3); /* brillo */
}

.modal-body img {
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}
/* Animación de entrada */
.schedule-table tbody tr {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.schedule-table tbody tr:hover {
  transform: scale(1.02); /* efecto zoom al pasar el cursor */
  background-color: rgba(255,255,255,0.05); /* ligero brillo */
}

/* Fondos con imágenes */
.pop-background-image {
  background: url('images/pop.jpg') center/cover no-repeat;
  color: #fff;
  position: relative;
}

.rock-background-image {
  background: url('images/rock.jpg') center/cover no-repeat;
  color: #fff;
  position: relative;
}

.country-background-image {
  background: url('images/country.jpg') center/cover no-repeat;
  color: #fff;
  position: relative;
}

/* Overlay dinámico */
.table-background-image-wrap .section-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  transition: background 0.3s ease;
}

.table-background-image-wrap:hover .section-overlay {
  background: rgba(0,0,0,0.2); /* se aclara al pasar el cursor */
}
.tickets-section {
  gap: 20px;
  margin: 40px auto;
}

.ticket-box {
  width: 250px;
  height: 200px;
  perspective: 1000px;
}

.ticket-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.ticket-box:hover .ticket-inner {
  transform: rotateY(180deg);
}

.ticket-front, .ticket-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Frente */
.ticket-front {
  background: hsl(190, 100%, 50%);
  color: #fff;
}

/* Reverso */
.ticket-back {
  background: #f8f9fa;
  color: #1a1a1a;
  transform: rotateY(180deg);
  padding: 15px;
  text-align: center;
}
.ticket-back *{
  color: #422d2d !important;
  font-weight: 500;
  letter-spacing: 0.3px;

}
.ticket-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.ticket-price {
  color: hsl(0, 0%, 100%); 
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}
.ticket-back ul{
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-logo {
  max-width: 180px;   /* Limita el ancho máximo */
  height: auto;       /* Ajusta la altura automáticamente */
}

.site-footer-link {
  font-size: 13px;   /* más pequeño */
  color: #fff;       /* letras blancas */
  text-decoration: none;
}

.site-footer-link:hover {
  color: #ccc;       /* tono gris al pasar el cursor */
}
.footer-logo {
  width: 80px;   /* ancho personalizado */
  height: 100px;   /* mantiene proporción */
}
.logo{

position:fixed;

top:12px;          /* altura alineada con menu */

left:25px;         /* separado de Home */

width:110px;       /* tamaño equilibrado */

z-index:9999;

animation: flotacion 2s ease-in-out infinite;

}


/* animacion suave profesional */

@keyframes flotacion{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-8px);
}

100%{
transform:translateY(0px);
}

}

@keyframes subirBajar {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}
.gallery-video {
  transform: scale(0.6); /* reduce al 80% */
}
.collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px;
  gap: 10px;
}

.collage .item {
  overflow: hidden;
  border-radius: 10px;
}

.collage img,
.collage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.social-icon-link.x-icon svg {
  fill: white; /* color blanco */
  transition: fill 0.3s ease, transform 0.3s ease;
}

.social-icon-link.x-icon:hover svg {
  fill: #cccccc; /* gris claro al pasar el mouse */
  transform: scale(1.1); /* ligero zoom */
}

./* espacio para que el logo no encime el menu */

.navbar{

padding-left:120px;

}


/* texto del menu más compacto */

.navbar-nav .nav-link{

padding-left:4px !important;

padding-right:4px !important;

}


/* espacio entre palabras del menu */

.navbar-nav{

gap:1px;

margin-left:12px;

}


/* eliminar separación extra del template */

.navbar-nav .nav-item{

margin-right:0;

}
.ubicacion-link {
  font-weight: 500;
  font-size: 1rem;
  color: #ffffff;
  transition: color 0.3s ease;
}

.ubicacion-link:hover {
  color: #cccccc;
}

.ubicacion-icon {
  display: inline-block;
  margin-right: 6px;
  animation: pulse 1.5s 3;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}




/* Posiciones irregulares para efecto collage */
.item1 { grid-column: span 2; grid-row: span 2; }
.item2 { grid-column: span 3; grid-row: span 1; }
.item3 { grid-column: span 1; grid-row: span 2; }
.item4 { grid-column: span 2; grid-row: span 2; }
.item5 { grid-column: span 3; grid-row: span 1; }

/* ===== GALERIA ===== */

.gallery-img {
    cursor: pointer;
    transition: 0.3s ease;
}

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

.gallery-video {
    object-fit: cover;
}

/* MASONRY */
.gallery-grid {
    column-count: 3;
    column-gap: 15px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 15px;
}

/* IMÁGENES */
.gallery-img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* EFECTO OSCURECER */
.gallery-grid:hover .gallery-img {
    opacity: 0.3;
}

/* IMAGEN ACTIVA */
.gallery-img:hover {
    opacity: 1 !important;
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gallery-grid { column-count: 2; }
}

@media (max-width: 576px) {
    .gallery-grid { column-count: 1; }
}

/* VIDEO */
.gallery-video {
    width: 100%;
    height: auto; /* 🔥 CAMBIO CLAVE */
    object-fit: cover;
    display: block;
    border-radius: 10px;
}
/* EFECTO HOVER IGUAL QUE IMAGEN */
.gallery-grid:hover .gallery-video {
    opacity: 0.3;
    transition: 0.3s;
}

.gallery-video:hover {
    opacity: 1 !important;
    transform: scale(1.05);
}



@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item video {
    width: 100%;
    height: auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

/* VIDEO COMO BLOQUE */
.gallery-video {
    width: 100%;
    height: 250px; /* 🔥 AJUSTA ESTE VALOR */
    object-fit: cover;
    display: block;
}

.gallery-video {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}
<style>

/* CONTENEDOR LOGOS */

.footer-logos{

display:grid;

grid-template-columns: repeat(6, 1fr);

align-items:center;

justify-items:center;

gap:35px;

margin-top:30px;
margin-bottom:20px;

}

/* CAJA DE CADA LOGO */

.footer-logos div{

width:100%;
display:flex;
align-items:center;
justify-content:center;

}

/* IMAGENES */

.footer-img{

max-height:95px;
max-width:140px;

width:auto;
height:auto;

object-fit:contain;

}

/* LOGOS MAS ALTOS */

.logo-edomex{

max-height:105px;

}

.logo-mexico{

max-height:95px;

}

/* RESPONSIVE */

@media(max-width:992px){

.footer-logos{

grid-template-columns: repeat(3,1fr);

gap:25px;

}

}

@media(max-width:576px){

.footer-logos{

grid-template-columns: repeat(2,1fr);

gap:20px;

}

.footer-img{

max-height:65px;

}

}

</style>

/* MAPA */

.mapa-section{

background:white;
padding-top:50px;   /* espacio arriba del titulo */
padding-bottom:80px; /* espacio antes del footer */

}


/* BLOQUE TITULO */

.mapa-header{

min-height:150px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

margin-bottom:0px; /* espacio entre subtitulo y mapa */

}

/* TITULO */

.mapa-header h2{
margin-bottom:12px;

}

/* SUBTITULO */

.mapa-header p{
color: rgb(32, 31, 31);
margin-bottom:30px;
font-size:18px;
opacity:0.8;

}


/* MAPA */

.mapa-contenedor{

width:100%;

height:380px;

border-radius:12px;

overflow:hidden;

box-shadow:0 10px 25px rgba(255, 255, 255, 0.15);

margin-bottom:30px; /* espacio entre mapa y footer */

}


/* IFRAME */

.mapa-contenedor iframe{

width:100%;
height:100%;

border:0;

}

/* FOOTER COMPACTO */

.site-footer{

padding-top:40px;
padding-bottom:25px;

}


/* LOGOS ALINEADOS */

.footer-logos{

display:grid;

grid-template-columns: repeat(6, 1fr);

gap:40px;

align-items:center;

justify-items:center;

margin-top:20px;

}


/* TAMAÑO LOGOS */

.footer-img{

max-height:90px;
max-width:150px;

object-fit:contain;

}


/* LOGO GRANDE CONTROLADO */

.logo-edomex{

max-height:110px;

}

.logo-mexico{

max-height:95px;

}



/* RESPONSIVE */

@media(max-width:992px){

.footer-logos{

grid-template-columns: repeat(3,1fr);

gap:25px;

}

}


@media(max-width:576px){

.footer-logos{

grid-template-columns: repeat(2,1fr);

gap:20px;

}

.footer-img{

max-height:65px;

}

}

/* TEXTO FOOTER MAS ESTETICO */

.copyright-text{

font-size:15px;

letter-spacing:0.5px;

font-weight:300;

opacity:0.9;

}


/* TITULO DUDAS */

.site-footer-title{

font-size:20px;

font-weight:600;

letter-spacing:1px;

margin-bottom:12px;

}


/* BLOQUE LEGAL INSTITUCIONAL */

.site-footer-bottom{

text-align:center;

margin-top:15px;

}


/* textos superiores */

.copyright-text{

font-size:14px;

font-weight:300;

letter-spacing:0.5px;

margin-bottom:2px;

opacity:0.9;

}


/* contenedor links */

.site-footer-links{

display:flex;

justify-content:center;

align-items:center;

gap:18px;

margin-top:8px;

padding:0;

list-style:none;

}


/* separador visual */

.site-footer-links li:not(:last-child)::after{

content:"|";

margin-left:18px;

opacity:0.5;

}


/* links */

.site-footer-link{

font-size:13.5px;

letter-spacing:0.4px;

opacity:0.85;

transition:0.3s;

}


/* hover elegante */

.site-footer-link:hover{

opacity:1;

text-decoration:none;

}



/* COLOR TEXTO GENERAL FOOTER */

.site-footer{

color:white;

}

/* fila superior footer */

.footer-top-row{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:25px;

flex-wrap:wrap;

gap:10px;

}


/* bloque contacto en linea */

.footer-contacto-linea{

color:white;

font-size:14px;

display:flex;

align-items:center;

gap:10px;

flex-wrap:wrap;

}


/* titulo contacto */

.footer-contacto-titulo{

color:#EE5007; /* amarillo */

font-size:18px;   /* tamaño letra */

font-weight:600;

letter-spacing:0.5px;

}


/* texto */

.footer-contacto-texto{

opacity:0.9;

}


/* telefono y correo AQUI AUMENTAR LA OPACIDAD*/ 

.footer-contacto-datos{

opacity:0;

}

/* redes sociales */

.footer-redes{

display:flex;

gap:14px;

}



.footer-redes a{

background:#EE5007;

width:38px;

height:38px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

color:white;

font-size:18px;

transition:0.3s;

}



.footer-redes a:hover{

background:#F8CB2E;

color:black;

}

/* FONDO PREPARATE PARA VER EL CIELO COMO NUNCA ANTES */

#section_4{

background-image: url('../images/GUIA.jpg');

background-size: cover;

background-position: center;

background-repeat: no-repeat;

position: relative;

}


/* capa oscura para que el texto se lea bien */

#section_4::before{

content:"";

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.45);

z-index:0;

}


/* asegura que el contenido quede encima del fondo */

#section_4 .container{

position:relative;

z-index:1;

}

#section_4 p,
#section_4 li{

color:rgba(255,255,255,0.9);

}

/* TEXTO  PREPARATE PARA VER EL CIELO COMO NUNCA ANTES */

#section_4{

color:white;

}


/* lista */

.guia-lista{

list-style:none;

padding-left:0;

margin-top:10px;

}


.guia-lista li{

margin-bottom:6px;

font-size:17px;

opacity:0.95;

}


/* subtitulo */

#section_4 p{

font-size:20px;

opacity:0.9;

}
.guia-lista li::before{

content:"•";

color:#F8CB2E;

margin-right:8px;

}

/* tamaño de letra lista PREPARATE PARA VER EL CIELO COMO NUNCA ANTES */

.guia-lista li{

font-size:20px;   /* tamaño letra */
margin-bottom:8px;
color: #ffffff;           /* blanco sólido */
  font-weight: 500;         /* 👈 más grosor */
  text-shadow: 0 0 5px rgba(0,0,0,0.8); /* 👈 nitidez sobre fondo */
}

/* POPUP FORMULARIO */

.registro-overlay{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.75);

display:none;

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

z-index:9999;

}


/* caja */

.registro-box{

background:white;

padding:25px;

border-radius:12px;

max-width:700px;

width:95%;

height:auto;

max-height:85vh;

overflow-y:auto;

text-align:center;

box-shadow:0 10px 35px rgba(0,0,0,0.35);

display:flex;

flex-direction:column;

}


/* titulo */

.registro-box h3{

color:var(--secondary-color);

margin-bottom:5px;

}


/* texto */

.registro-box p{

margin-bottom:10px;

}


/* iframe formulario */

.registro-iframe{

width:100%;

height:100%;

border:0;

border-radius:10px;

}



/* contador */

.contador-box{

margin-top:18px;

font-size:24px;

font-weight:600;

color:white;

background:rgba(0,0,0,0.35);

padding:10px 16px;

border-radius:8px;

display:inline-block;

}

/* boton cerrar */

.cerrar-popup{

position:absolute;

top:10px;
right:15px;

border:none;

background:none;

font-size:22px;

cursor:pointer;

color:#999;

}


/* boton opcional */

.custom-btn-outline{

margin-top:10px;

background:transparent;

border:2px solid var(--secondary-color);

color:var(--secondary-color);

}

.contador-box{

margin-top:18px;

font-size:26px;

font-weight:600;

color:white;

background:rgba(0,0,0,0.35);

padding:10px 18px;

border-radius:8px;

display:inline-block;

}

/* ===================== */
/* POPUP VIDEO */
/* ===================== */
.contador-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
display:none;
align-items:center;
justify-content:center;
z-index:10000;
overflow:hidden;
}

/* VIDEO FONDO */
.video-popup{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-1;
}

/* CAPA OSCURA */
.contador-overlay::before{
content:"";
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
}

/* CONTENIDO */
.contenido-popup{
position:relative;
color:white;
text-align:center;
padding:20px;
}

/* TEXTO */
.contenido-popup h2{
font-family: 'Cinzel', serif;
font-size:clamp(30px,5vw,65px);
letter-spacing:6px;
font-weight:700;
color:#ffffff;

text-transform:uppercase;

text-shadow:
0 0 10px rgba(0,0,0,0.9),
0 0 25px rgba(0,0,0,0.8),
0 0 40px rgba(0,0,0,0.6);

margin-bottom:15px;

}

#contadorGrande{
font-size:clamp(40px,6vw,90px);
font-weight:bold;
margin:10px 0;
}

.contenido-popup p{
font-family: 'Cinzel', serif;
font-size:clamp(14px,2vw,20px);
letter-spacing:2px;
font-weight:300;
color:#756d6d;

text-align:center;
margin-top:10px;

/* efecto cine */
text-shadow:
0 0 8px rgba(0,0,0,0.9),
0 0 15px rgba(0,0,0,0.7);

/* animación suave */
animation: fadeUp 2s ease;
}

/* ===================== */
/* POPUP REGISTRO MÁS TRANSLÚCIDO */
/* ===================== */
.registro-overlay{
background:rgba(0,0,0,0.45) !important;
backdrop-filter:blur(5px);
}

.registro-box{
background:rgba(0,0,0,0.25) !important;
color:white;
}

/* ===================== */
/* CONTADOR HERO GRANDE */
/* ===================== */
.contador-box{
font-size:clamp(30px,4vw,50px);
font-weight:bold;
color:white !important;
}

/* ===================== */
/* EFECTO CINE */
/* ===================== */

/* capa más cinematográfica */
.contador-overlay::before{
content:"";
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.75); /* 🔥 más oscuro */
}

.contenido-popup h2{
color:white;
font-weight:800;
letter-spacing:4px;
text-transform:uppercase;

text-shadow:
0 0 10px rgba(0,0,0,0.8),
0 0 20px rgba(0,0,0,0.8),
0 0 30px rgba(0,0,0,0.8);
}

.contenido-popup p{
color:white;
font-weight:500;
opacity:1;

text-shadow:
0 0 10px rgba(0,0,0,0.9),
0 0 20px rgba(0,0,0,0.9);
}

#contadorGrande{
color:#F8CB2E;
text-shadow:
0 0 10px rgba(0,0,0,0.8),
0 0 20px rgba(0,0,0,0.8),
0 0 40px rgba(248,203,46,0.6);
}

/* CONTENIDO ANIMADO */
.contenido-popup{
animation: fadeZoom 1.5s ease;
}

/* TEXTO */
.contenido-popup h2{
letter-spacing:3px;
text-transform:uppercase;
animation: fadeUp 1.5s ease;
}

/* CONTADOR ANIMADO */
#contadorGrande{
animation: pulse 1s 3;
text-shadow: 0 0 15px rgba(255,255,255,0.6);
}

/* FRASE */
.contenido-popup p{
opacity:0.8;
animation: fadeUp 2s ease;

.contenido-popup p{
margin-top:25px;
}

.contenido-popup p{
margin-top:40px;
}

#contadorGrande{
margin:10px 0;
}

}

/* ANIMACIONES */
@keyframes fadeZoom{
0%{
opacity:0;
transform:scale(0.7);
}
100%{
opacity:1;
transform:scale(1);
}
}

@keyframes fadeUp{
0%{
opacity:0;
transform:translateY(30px);
}
100%{
opacity:1;
transform:translateY(0);
}
}

@keyframes pulse{
0%{transform:scale(1);}
50%{transform:scale(1.08);}
100%{transform:scale(1);}
}

/* EFECTO BRILLO */
#contadorGrande span{
color:#F8CB2E;
text-shadow: 0 0 25px rgba(248,203,46,0.9);
}

/* ===================== */
/* PARTÍCULAS */
/* ===================== */
.particulas{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
pointer-events:none;
overflow:hidden;
}

.particulas span{
position:absolute;
width:4px;
height:4px;
background:white;
opacity:0.6;
border-radius:50%;
animation: flotar 10s linear infinite;
}

@keyframes flotar{
0%{
transform:translateY(100vh) scale(0.5);
opacity:0;
}
50%{
opacity:1;
}
100%{
transform:translateY(-10vh) scale(1);
opacity:0;
}
}

/* ===================== */
/* GLOBOS */
/* ===================== */
.globos{
position:absolute;
width:100%;
height:100%;
top:0;
left:0;
pointer-events:none;
}

.globos::before{
left:20%;
animation-delay:0s;
}

@keyframes subir{
0%{
transform:translateY(100vh);
opacity:0;
}
20%{opacity:1;}
100%{
transform:translateY(-10vh);
opacity:0;
}
}

/* ===================== */
/* CONTADOR MÁS PRO */
/* ===================== */
#contadorGrande span{
margin:0 5px;
display:inline-block;
animation: pulse 1s 3;
}

/* GLOW TEXTO */
.contenido-popup h2{
text-shadow:0 0 20px rgba(255,255,255,0.4);
}

.contenido-popup p{
text-shadow:0 0 10px rgba(255,255,255,0.3);
}

/* ===================== */
/* CONTADOR PRO */
/* ===================== */

.contador-pro{
display:flex;
justify-content:center;
align-items:center;
gap:40px;
flex-wrap:wrap;
text-align:center;
}

/* BLOQUES */
.bloque{
display:flex;
flex-direction:column;
align-items:center;
}

/* NUMEROS GRANDES */
.numero{
font-size: clamp(22px, 5vw, 60px); /* 👈 más adaptable */
font-weight:700;
color:#c7c3b4;
font-family:'Outfit', sans-serif;
}

/* TEXTO ABAJO */
.label{
font-size:clamp(10px, 2vw, 14px);
letter-spacing:3px;
color:white;
opacity:0.8;
margin-top:5px;
}

/* RESPONSIVE */
@media(max-width:768px){
.contador-pro{
gap:10px;
}
}

/* ===================== */
/* CONTADOR POPUP PRO */
/* ===================== */

.contador-pro.popup{
display:flex;
align-items:center;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

/* BLOQUES */
.popup .bloque{
display:flex;
flex-direction:column;
align-items:center;
}

/* NUMEROS */
.popup .numero{
font-size:clamp(40px,6vw,90px);
font-weight:700;
color:#F8CB2E;
}

/* SOLO POPUP */
.popup .separador{
color:#F8CB2E;
}

/* TEXTO */
.popup .label{
border-top:1px solid rgba(255,255,255,0.3);
padding-top:5px;
}

/* DOS PUNTOS */
.separador{
font-size:clamp(30px,5vw,70px);
color:rgba(255, 255, 255, 0.283);
font-weight:bold;
margin:0 5px;
}

/* ===================== */
/* EFECTO CRONÓMETRO REAL */
/* ===================== */

/* NÚMEROS ANIMADOS */
.numero{
display:inline-block;
animation: subirNumero 0.4s ease;
}

/* DOS PUNTOS PARPADEO */
.separador{
animation: blink 1s;
}

@keyframes blink{
0%,100%{opacity:1;}
50%{opacity:0.2;}
}

/* ===================== */
/* TEXTO ANIMADO CINE */
/* ===================== */

.texto-animado{
font-family:'Cinzel', serif;
font-size:clamp(30px,5vw,65px);
letter-spacing:6px;
font-weight:700;
text-transform:uppercase;
color:#ffffff;
display:flex;
justify-content:center;
gap:5px;
}

/* LETRAS OCULTAS */
.texto-animado span{
opacity:0;
transform:translateY(20px);
animation: aparecerLetra 0.5s forwards;
}

/* DELAY POR LETRA */
.texto-animado span:nth-child(1){animation-delay:0.1s;}
.texto-animado span:nth-child(2){animation-delay:0.2s;}
.texto-animado span:nth-child(3){animation-delay:0.3s;}
.texto-animado span:nth-child(4){animation-delay:0.4s;}
.texto-animado span:nth-child(5){animation-delay:0.5s;}
.texto-animado span:nth-child(6){animation-delay:0.6s;}
.texto-animado span:nth-child(7){animation-delay:0.7s;}

/* ANIMACIÓN ENTRADA */
@keyframes aparecerLetra{
to{
opacity:1;
transform:translateY(0);
}
}

@keyframes brillo{
0%{left:-100%;}
100%{left:100%;}
}

.texto-animado{
position:relative;
overflow:hidden;
}

<form id="formRegistro" class="form-pro">

<h3>📋 DATOS PERSONALES</h3>

<label>Nombre completo *</label>
<input type="text" name="nombre" placeholder="Tu nombre" required>

<div class="fila">
  <div>
    <label>Edad</label>
    <input type="number" name="edad" placeholder="25">
  </div>

  <div>
    <label>Teléfono *</label>
    <input type="tel" name="telefono" placeholder="55 1234 5678" required>
  </div>
</div>

<label>País</label>
<select name="pais">
  <option>México</option>
</select>

<div class="fila">
  <div>
    <label>Estado</label>
    <input type="text" name="estado" placeholder="Estado de México">
  </div>

  <div>
    <label>Municipio / Localidad</label>
    <input type="text" name="municipio" placeholder="Tu municipio">
  </div>
</div>

<button type="submit">Registrarme</button>

</form>

/* FORM GENERAL */
.form-pro{
display:flex;
flex-direction:column;
gap:12px;
}

/* INPUT CON ICONO */
.input-group{
display:flex;
align-items:center;
background:rgba(255,255,255,0.15);
backdrop-filter: blur(8px);
border:1px solid rgba(255,255,255,0.2);
border-radius:12px;
padding:10px;
transition:0.3s;
}

.input-group span{
margin-right:8px;
font-size:18px;
}

.input-group input{
border:none;
outline:none;
width:100%;
background:transparent;
}

/* FOCUS */
.input-group:focus-within{
background:white;
box-shadow:0 0 10px rgba(255,255,255,0.4);
transform:scale(1.02);
}

/* FILAS */
.fila{
display:flex;
gap:10px;
}

.fila .input-group{
flex:1;
}

/* BOTON */
#btnEnviar{
margin-top:10px;
padding:12px;
border:none;
border-radius:12px;
background:linear-gradient(90deg,#EE5007,#ff7a18);
color:white;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

#btnEnviar:hover{
transform:scale(1.05);
box-shadow:0 0 15px rgba(255,122,24,0.6);
}

/* MENSAJE BONITO */
.mensaje-exito{
  position:fixed;
  bottom:40px;
  left:50%;
  transform:translateX(-50%) scale(0);

  background:#22c55e;
  color:white;

  padding:20px 40px;   /* 👈 más grande */
  border-radius:14px;

  font-size:18px;      /* 👈 texto más grande */
  font-weight:600;

  box-shadow:0 10px 25px rgba(0,0,0,0.3);

  transition:0.3s ease;
  z-index:99999;
}

.mensaje-exito.mostrar{
  transform:translateX(-50%) scale(1);
}

.mensaje-exito.mostrar{
  transform:translate(-50%, -10px) scale(1);
}

.form-pro{
gap:18px;
}

.input-group{
padding:14px;
border-radius:14px;
}

text-shadow:
0 0 10px rgba(0,0,0,0.8),
0 0 20px rgba(0,0,0,0.6);
}

.wizard{
display:flex;
flex-direction:column;
gap:20px;
}

/* PASOS */
.pasos{
display:flex;
justify-content:space-between;
}

.paso{
width:35px;
height:35px;
border-radius:50%;
background:#ddd;
display:flex;
align-items:center;
justify-content:center;
}

.paso.activo{
background:#EE5007;
color:white;
}

/* STEPS */
.step{
display:none;
}

.step.active{
display:block;
}

/* INPUTS */
.step input{
width:100%;
margin:10px 0;
padding:12px;
border-radius:10px;
border:1px solid #ddd;
}

/* BOTONES */
.step button{
margin-top:10px;
padding:10px 15px;
border:none;
border-radius:20px;
background:#EE5007;
color:white;
cursor:pointer;
}

.frase-dioses{
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 5vw, 50px); /* 👈 RESPONSIVE */
  text-align: center;
  color: white;
  white-space: nowrap; /* 👈 NO se parte */
  overflow: hidden;

  text-shadow:
  0 0 10px rgba(241, 230, 149, 0.5),
  0 0 20px rgba(231, 225, 115, 0.6);
}

letter-spacing:0px;
}

.hero-section {
  height: 100vh; /* ocupa toda la pantalla */
  display: flex;
  align-items: center; /* centra verticalmente */
  justify-content: center;
  text-align: center;
}

.hero-section{
  padding: 300px 0 60px !important;
}

.top-bar{
  top: -20px !important;
}

.hero-section h1 {
  margin-bottom: 0;
  letter-spacing: 2px;
}

.hero-section h2 {
  margin-top: 8px;
  letter-spacing: 3px;
}

.opciones button {
  background: transparent;
  color: #333;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.opciones button.activo {
  background: #EE5007;
  color: white;
  box-shadow: 0 0 10px rgba(238, 80, 7, 0.6);
  transform: scale(1.05);
}

/* ========================= */
/* 🎨 AJUSTE SOLO POPUP 2 */
/* ========================= */

/* CAJA POPUP */
.registro-box{
  background:rgba(235, 207, 207, 0.1) !important;
  backdrop-filter: blur(12px);
  border-radius:15px;
  padding:30px 25px;
}

/* TITULO */
.registro-box h3{
  font-size:28px;
  font-weight:700;
  color:#9974d4;
  letter-spacing:1px;
  text-transform:uppercase;

  text-shadow:
  0 2px 10px rgba(109,40,217,0.3);
}

/* TEXTO */
.registro-box p{
  color:#ffffff !important;
}

/* PASOS */
.paso{
  background:#E5E7EB !important;
  color:#292929 !important;
}

.paso.activo{
  background:#6D28D9 !important;
  color:white !important;
}

/* INPUTS */
.step input{
  border:1px solid #ccc !important;
  color:#1b1b1b !important;
}

.step input::placeholder{
  color:#999 !important;
}

/* BOTONES PRINCIPALES */
.step button{
  background: linear-gradient(135deg, #6D28D9, #9333EA) !important;
  color:rgba(255, 255, 255, 0.817) !important;
  border:none !important;
  border-radius:25px;
}

.step button:hover{
  transform:scale(1.05);
  box-shadow:0 0 15px rgb(108, 40, 217);
}

/* OPCIONES */
.opciones button{
  background:rgba(255,255,255,0.6);
  border:1px solid #ddd;
  color:#1E2A38;
  border-radius:25px;
  padding:10px 18px;
  transition:0.3s;
  backdrop-filter: blur(4px);
}

.opciones button:hover{
  background:#6c28d988;
  color:white;
  border:none;
}

/* BOTON CONTINUAR */
.custom-btn-outline{
  border:1px solid #6D28D9 !important;
  color:#6D28D9 !important;
}

.custom-btn-outline:hover{
  background:#6D28D9 !important;
  color:white !important;
}

.step p{
  margin: 25px 0 20px 0;
  text-align:center;
}

.step{
  display:none;
}

.step.active{
  display:block;
}

/* FORZAR UNA SOLA LINEA QUE SE ESCALA */
.hero-section h1{
  display: block; /* 👈 CAMBIO CLAVE */
  white-space: nowrap;
  width: 100%;
  font-size: clamp(16px, 5vw, 70px); /* 👈 responsive */
   text-align: center;
} 

/* CONTENEDOR QUE RECORTA BIEN */
.hero-section .container{
  overflow: hidden;
}
/* PC: mostrar completo */
.label .short{
  display: none;
}

/* CELULAR: mostrar abreviado */
@media (max-width: 480px){

  .label .full{
    display: none;
  }

  .label .short{
    display: inline;
  }

}

@media (max-width: 480px){

  .contador-pro{
    flex-wrap: nowrap;
    gap: 5px;
  }

  .numero{
    font-size: 16px;
  }

  .label{
    font-size: 9px;
  }

  .separador{
    font-size: 14px;
  }

}

/* FORZAR CAMBIO EN CELULAR */
@media (max-width: 480px){

  .label .full{
    display: none !important;
  }

  .label .short{
    display: inline !important;
  }

}

@media (max-width: 480px){

  /* 🔥 REDUCE TODO EL CONTADOR */
  #contadorGrande{
    transform: scale(0.75);   /* 👈 hace “zoom out” */
    transform-origin: center;
  }

  /* 🔥 EVITA QUE SE BAJE */
  .contador-pro.popup{
    flex-wrap: nowrap !important;
    gap: 4px !important;
  }

  /* 🔥 AJUSTE FINO */
  .popup .numero{
    font-size: 18px !important;
  }

  .popup .label{
    font-size: 9px !important;
  }

  .popup .separador{
    font-size: 14px !important;
  }

}

@media (max-width: 480px){

  .contenido-popup,
  .registro-box{
    backdrop-filter: none !important;
  }

}
/* 🔥 OPTIMIZACIÓN GENERAL */

*{
  will-change: auto;
}

/* evitar cálculos pesados */
.contenido-popup,
.registro-box{
  contain: content;
}

/* mejorar rendimiento de animaciones */
.numero,
.separador{
  will-change: transform;
}

video{
  transform: translateZ(0);
}

@media (max-width: 480px){

  #contadorGrande,
  .contenido-popup h2{
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
  }

}

/* 🔒 Ocultar temporalmente menú */
.navbar-nav .nav-item:nth-last-child(2),
.navbar-nav .nav-item:last-child {
  display: none;
}

.atmosfera-section{
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)),
              url('images/globos1.jpeg') center/cover no-repeat;
  height: 400px;

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

  text-align: center;
}

.titulo-atmosfera{
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow:

}

.subtitulo-atmosfera{
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  margin: 0;

}

.colaboradores{
  text-align: center;
}
.colaboradores h2{
  margin-top: 50px;
  margin-bottom: 50px;
}
/* FILAS */
.fila{
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 30px;
}

/* LOGOS */
.sponsor-logo{
  display: flex;
  justify-content: center;
  align-items: center;

  width: 180px;   /* 👈 tamaño base */
  height: 180px;  /* 👈 mismo alto */

  padding: 5px;
  transition: 0.3s;
}

/* IMAGEN */
.sponsor-logo img{
  width: 160%;
  height: 160%;
  object-fit: contain;
}

/* HOVER */
.sponsor-logo:hover{
  transform: scale(1.1);
}

@media (max-width: 768px){

  /* TODAS LAS FILAS IGUALES */
  .fila{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
  }

  /* TETRIS CENTRADO */
  .fila-1{
    grid-template-columns: 1fr;
  }

  /* LOGOS MÁS PEQUEÑOS */
  .sponsor-logo{
    width: 100px;
    height: 100px;
  }

}