@font-face {
  font-family: 'FuenteEvento';
  src: url("../img/EuropaGroNr2SHOP-Bol 2.otf") format('opentype');
  font-weight: 400;
  font-style: normal;
}

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

body {
  font-family: "Open Sans", sans-serif;
  color: #FFFFFF;
  background-image: url("../img/Background-Fondo-Opaco.jpg");
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: fixed;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "FuenteEvento", "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Accordion / Pricing Tables
--------------------------------------------------------------*/
details {
  background: #434343;
  border: 2px solid #F27F3D;
  border-radius: 25px;
  padding: 20px 25px;
  margin-bottom: 25px;
  color: #dad2c3;
  width: 100%;
  overflow: hidden;
}

details[open] {
  overflow: hidden;
}

summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "\25B8";
  color: white;
  font-size: 20px;
  transition: transform 0.2s;
}

details[open] summary::before {
  transform: rotate(90deg);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 25px;
}

thead th {
  background: #F27F3D;
  color: white;
  padding: 14px;
  border: 2px solid #F27F3D;
  text-align: center;
}

td, th {
  border: 2px solid #F27F3D;
  padding: 18px 12px;
  text-align: center;
}

tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.05);
}

@media(max-width: 768px) {
  summary {
    font-size: 22px;
  }

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

  thead {
    display: none;
  }

  tbody tr {
    margin-bottom: 15px;
    border: 2px solid #ffffff;
    border-radius: 10px;
    padding: 10px;
    background: #111;
  }

  td::before, th::before {
    content: attr(data-label);
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
  }

  td, th {
    border: none !important;
  }
}

/*--------------------------------------------------------------
# Etapas de Venta
--------------------------------------------------------------*/
.count-box-etapas {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-left: 4px solid #F27F3D;
  padding: 18px 24px;
  border-radius: 8px;
  color: #ffffff;
  width: 100%;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.count-box-etapas strong {
  letter-spacing: 0.3px;
}

.count-box-etapas:hover {
  background: rgba(0, 0, 0, 0.6);
  border-left-color: #F27F3D;
  transform: translateY(-2px);
}

.count-box-etapas p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.count-box-etapas strong,
.count-box-etapas b {
  color: #F27F3D;
  font-weight: 600;
  font-size: 17px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #F29849;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top i {
  font-size: 28px;
  color: #151515;
  line-height: 0;
}

.back-to-top:hover {
  background: #151515;
}

.back-to-top:hover i {
  color: #f1cc30;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f1cc30;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

#header.header-scrolled {
  background: rgba(0, 0, 0, 0.8);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Get Started Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #FFFFFF;
  background-color: #F23C13;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  border-radius: 10px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 20px;
  display: inline-block;
  border: 4px solid #F23C13;
  text-decoration: none;
}

.get-started-btn:hover {
  background: #F27F3D;
  color: #FFFFFF;
  border: 4px solid #F27F3D;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover > a {
  color: #F23C13;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #151515;
  background-color: #f1cc30;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  background: url("../img/Background-Top-Pagina.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "FuenteEvento", sans-serif;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #dad2c3;
  font-family: "FuenteEvento", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #F23C13;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #dad2c3;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #f1cc30;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

/*--------------------------------------------------------------
# Responsive container
--------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-6 {
  width: 50%;
  padding: 0 15px;
}

.col-lg-12 {
  width: 100%;
  padding: 0 15px;
}

@media (max-width: 991px) {
  .col-lg-6 {
    width: 100%;
  }
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

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

.img-fluid {
  max-width: 100%;
  height: auto;
}

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.px-3 { padding-left: 1rem; padding-right: 1rem; }

/*--------------------------------------------------------------
# Badges
--------------------------------------------------------------*/
.badge-sold-out {
  background: #dc3545;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 10px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Ten en cuenta
--------------------------------------------------------------*/
.ten-en-cuenta {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 30px;
  margin-top: 30px;
}

.ten-en-cuenta h3 {
  color: #F27F3D;
  margin-bottom: 20px;
}

.ten-en-cuenta ul {
  list-style: none;
  padding: 0;
}

.ten-en-cuenta ul li {
  padding: 8px 0 8px 25px;
  position: relative;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.6;
}

.ten-en-cuenta ul li::before {
  content: "\25B8";
  color: #F27F3D;
  position: absolute;
  left: 0;
  top: 8px;
}

/*--------------------------------------------------------------
# Purchase buttons
--------------------------------------------------------------*/
.purchase-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.purchase-buttons a {
  display: inline-block;
}

/*--------------------------------------------------------------
# Event info boxes
--------------------------------------------------------------*/
.event-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.event-info-box {
  background: rgba(0,0,0,0.5);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 15px 25px;
  text-align: center;
  color: white;
}

.event-info-box i {
  font-size: 24px;
  color: #F27F3D;
  margin-bottom: 5px;
}

.event-info-box h4 {
  font-size: 16px;
  margin: 5px 0;
}

.event-info-box p {
  font-size: 14px;
  margin: 0;
  color: rgba(255,255,255,0.8);
}

/*--------------------------------------------------------------
# Venue map section
--------------------------------------------------------------*/
.venue-map {
  text-align: center;
  margin: 30px 0;
}

.venue-map img {
  max-width: 100%;
  border-radius: 10px;
}

/*--------------------------------------------------------------
# AOS disable on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
