/* ===== BASE STYLES ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jumper {
  display: flex;
  gap: 10px;
}

.jumper > div {
  width: 15px;
  height: 15px;
  background-color: #8B4513;
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.jumper div:nth-child(1) {
  animation-delay: -0.32s;
}

.jumper div:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

/* Header */
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 80px;
  transition: all 0.5s;
}

.header-sticky {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.logo small {
  font-size: 0.8rem;
  font-weight: 400;
  display: block;
}

.nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 35px;
}

.nav li a {
  color: #2a2a2a;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
  position: relative;
}

.header-area .nav li a {
  color: white;
}

.header-sticky .nav li a {
  color: #2a2a2a;
}

.nav li a:hover,
.nav li a.active {
  color: #8B4513;
}

.nav li a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #8B4513;
  transition: width 0.3s;
}

.nav li a:hover:after,
.nav li a.active:after {
  width: 100%;
}

.menu-trigger {
  display: none;
  cursor: pointer;
  padding: 10px;
}

.menu-trigger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #2a2a2a;
  margin: 5px 0;
  transition: all 0.3s;
}

.header-area .menu-trigger span {
  background: white;
}

.header-sticky .menu-trigger span {
  background: #2a2a2a;
}

@media (max-width: 991px) {
  .menu-trigger {
    display: block;
  }

  .nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .nav li a {
    color: #2a2a2a !important;
  }
}

/* ===== CAFÉ BAR ESTADIO STYLES ===== */

/* Hero Section Estadio */
.hero-estadio {
  position: relative;
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
  padding: 0;
  overflow: hidden;
}

.hero-overlay-estadio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-text-estadio {
  position: relative;
  z-index: 2;
}

.hero-badge-estadio {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 10px 25px;
  border-radius: 50px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge-estadio span {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-title-estadio {
  font-size: 4.5rem;
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.highlight-estadio {
  color: #fff;
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.8),
    0 0 40px rgba(205, 133, 63, 0.6);
  font-size: 5rem;
}

.hero-subtitle-estadio {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  line-height: 1.8;
  max-width: 500px;
}

.hero-cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-estadio-primary {
  background: white;
  color: #8B4513;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-estadio-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #8B4513;
  text-decoration: none;
}

.btn-estadio-outline {
  background: transparent;
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.btn-estadio-outline:hover {
  background: white;
  color: #8B4513;
  text-decoration: none;
  transform: translateY(-3px);
}

.hero-image-estadio {
  position: relative;
  z-index: 2;
}

.main-hero-img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  animation: floatHero 6s ease-in-out infinite;
}

.floating-badge-1,
.floating-badge-2 {
  position: absolute;
  background: white;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.floating-badge-1 {
  top: 50px;
  left: -30px;
  animation: float 4s ease-in-out infinite;
}

.floating-badge-2 {
  bottom: 50px;
  right: -30px;
  animation: float 5s ease-in-out infinite 1s;
}

.floating-badge-1 span,
.floating-badge-2 span {
  font-weight: 700;
  color: #8B4513;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
  display: block;
}

@keyframes floatHero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* About Section Estadio */
.section-about-estadio {
  padding: 120px 0;
  background: #fff;
}

.about-image-wrapper {
  position: relative;
}

.about-main-img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.about-main-img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 60px rgba(139, 69, 19, 0.25);
}

.about-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
  border-radius: 50%;
  top: -30px;
  right: -30px;
  z-index: -1;
  opacity: 0.2;
}

.about-content-estadio {
  padding-left: 40px;
}

.section-about-estadio .about-label {
  display: inline-block;
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #2a2a2a;
  margin-bottom: 30px;
  line-height: 1.2;
}

.about-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.section-about-estadio .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: white;
  font-size: 24px;
}

.feature-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 8px;
}

.feature-text p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.about-description {
  margin-top: 30px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  font-weight: 500;
}

/* Menu Section Estadio */
.section-menu-estadio {
  padding: 120px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
}

.section-menu-estadio .menu-label {
  display: inline-block;
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.menu-cta-content-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.menu-cta-content-center h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #2a2a2a;
  margin-bottom: 20px;
}

.menu-cta-content-center p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.menu-features-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 35px;
}

.menu-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #2a2a2a;
  margin-bottom: 15px;
}

.menu-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
}

.menu-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #2a2a2a;
}

.section-menu-estadio .menu-feature-item i {
  color: #8B4513;
  font-size: 20px;
}

.btn-menu-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.section-menu-estadio .btn-menu-cta {
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
}

.btn-menu-cta:hover {
  transform: translateY(-3px);
  color: white;
  text-decoration: none;
}

.section-menu-estadio .btn-menu-cta:hover {
  box-shadow: 0 15px 40px rgba(139, 69, 19, 0.4);
}

.btn-menu-cta i {
  transition: transform 0.3s ease;
}

.btn-menu-cta:hover i {
  transform: translateX(5px);
}

/* Reviews Section Estadio */
.section-reviews-estadio {
  padding: 120px 0;
  background: #fff;
}

.section-reviews-estadio .reviews-label {
  display: inline-block;
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.reviews-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #2a2a2a;
  margin-bottom: 15px;
}

.reviews-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
}

.review-card-modern {
  background: white;
  border-radius: 25px;
  padding: 40px 30px;
  margin: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card-modern:hover {
  transform: translateY(-10px);
}

.review-quote-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-reviews-estadio .review-quote-icon {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(210, 105, 30, 0.1) 100%);
}

.review-quote-icon i {
  font-size: 20px;
}

.section-reviews-estadio .review-quote-icon i {
  color: #8B4513;
}

.review-stars {
  margin-bottom: 20px;
}

.review-stars i {
  font-size: 18px;
  margin-right: 3px;
}

.section-reviews-estadio .review-stars i {
  color: #8B4513;
}

.review-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
  flex-grow: 1;
}

.review-author {
  border-top: 2px solid #f5f5f5;
  padding-top: 20px;
}

.review-author h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2a2a2a;
  margin: 0;
}

.section-reviews-estadio .review-card-modern:hover {
  box-shadow: 0 20px 50px rgba(139, 69, 19, 0.2);
}

/* Contact Section Estadio */
.section-contact-estadio {
  padding: 120px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
}

.section-contact-estadio .contact-label {
  display: inline-block;
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #2a2a2a;
  margin-bottom: 15px;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card:hover {
  transform: translateY(-10px);
}

.contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.section-contact-estadio .contact-icon {
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-icon i {
  color: white;
  font-size: 32px;
}

.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2a2a2a !important;
  margin-bottom: 15px;
}

.contact-link {
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 10px;
}

.section-contact-estadio .contact-link {
  color: #8B4513;
}

.contact-link:hover {
  text-decoration: none;
  transform: translateX(5px);
}

.section-contact-estadio .contact-link:hover {
  color: #D2691E;
}

.section-contact-estadio .contact-card:hover {
  box-shadow: 0 20px 50px rgba(139, 69, 19, 0.2);
}

.contact-info {
  color: #555 !important;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.contact-description {
  color: #595959 !important;
  font-size: 0.9rem;
  margin: 0;
}

/* Footer Estadio */
.footer-estadio {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 60px 0 30px;
  color: white;
}

.footer-brand h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer-contact h4,
.footer-legal h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.footer-contact-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-item i {
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-estadio .footer-contact-item i {
  color: #8B4513;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  transform: translateX(5px);
}

.footer-estadio .footer-links li a:hover {
  color: #8B4513;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 30px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.6;
}

.footer-gov-logo {
  max-width: 400px;
  height: auto;
}

@media (max-width: 992px) {
  .hero-title-estadio {
    font-size: 3rem;
  }

  .highlight-estadio {
    font-size: 3.5rem;
  }

  .about-content-estadio {
    padding-left: 0;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .hero-title-estadio {
    font-size: 2.5rem;
  }

  .highlight-estadio {
    font-size: 3rem;
  }

  .floating-badge-1,
  .floating-badge-2 {
    position: static;
    margin: 10px auto;
    display: block;
    width: fit-content;
  }

  .hero-cta-buttons {
    flex-direction: column;
  }

  .btn-estadio-primary,
  .btn-estadio-outline {
    width: 100%;
    justify-content: center;
  }

  .footer-gov-logo {
    max-width: 280px;
  }
}
