:root {
  --red: #c62828;
  --red-dark: #8e1116;
  --yellow: #f9c300;
  --orange: #f57c00;
  --wine: #7b1e3a;
  --cream: #fff4d6;
  --cream-2: #ffefd0;
  --pool: #1597c9;
  --dark: #1e1e1e;
  --dark-2: #2b2b2b;
  --white: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.92);
  --text-muted: rgba(255, 255, 255, 0.76);
  --glass: rgba(255, 255, 255, 0.1);
  --glass-strong: rgba(255, 255, 255, 0.16);
  --border: rgba(255, 255, 255, 0.16);
  --border-soft: rgba(255, 255, 255, 0.1);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.16);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(249, 195, 0, 0.14), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(245, 124, 0, 0.12), transparent 22%),
    linear-gradient(135deg, #76122f 0%, #b8161c 48%, #cf2127 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.centre {
  text-align: center;
}

.narrow {
  max-width: 820px;
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2,
.two-col h2 {
  font-family: 'Bangers', cursive;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.section-heading p,
.panel-copy,
.card p,
.reason-card p,
.review-card p,
.feature-list p,
.tick-list,
.faq-item p,
.hero-copy,
.hero-lead,
.hero-trust,
.form-note,
.final-cta p {
  color: var(--text-soft);
  line-height: 1.75;
}

/* HEADER FIXED PREMIUM VERSION */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(14px);
  background: rgba(18, 18, 18, 0.38);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0 55px;
  margin-bottom: -45px;
  overflow: visible;
}

.nav-wrap {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  position: relative;
}
/* SCROLL LOGO EFFECT */

.brand {
  transition:
    transform 0.55s cubic-bezier(.22,1,.36,1),
    left 0.55s cubic-bezier(.22,1,.36,1);
}

.site-logo {
  width: 220px;
  height: auto;
  object-fit: contain;

  transition:
    width 0.55s cubic-bezier(.22,1,.36,1),
    filter 0.55s cubic-bezier(.22,1,.36,1);

  filter:
    drop-shadow(0 12px 24px rgba(0,0,0,0.45))
    drop-shadow(0 0 14px rgba(249,195,0,0.35));
}

/* Cuando haces scroll */
.site-header.scrolled .brand {
  position: absolute;
  left: 40px;
  top: 0;
  transform: translateY(-10px);
}

.site-header.scrolled .site-logo {
  width: 125px;
  filter:
    drop-shadow(0 8px 16px rgba(0,0,0,0.35))
    drop-shadow(0 0 8px rgba(249,195,0,0.22));
}

/* LOGO FLOATING */
.brand {
  position: absolute;
  left: 40px;
  top: 0;
  transform: translateY(-1px);
  z-index: 100;
  display: flex;
  align-items: center;
}

.brand-logo {
  text-decoration: none;
}

.site-logo {
  width: 220px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 12px 24px rgba(0,0,0,0.45))
    drop-shadow(0 0 14px rgba(249,195,0,0.35));
  animation: logoFiestaPro 5s ease-in-out infinite;
}

/* SUN GLOW */
.brand::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(249, 195, 0, 0.35) 0%,
    rgba(245, 124, 0, 0.18) 40%,
    transparent 70%
  );
  filter: blur(10px);
  z-index: 1;
  animation: logoSunGlow 4s ease-in-out infinite;
}

/* SPARK EFFECT */
.brand::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  right: 40px;
  top: 20px;
  background: radial-gradient(circle, #fff 0 15%, #f9c300 18% 35%, transparent 40%);
  border-radius: 50%;
  opacity: 0;
  z-index: 3;
  animation: logoSpark 3.6s ease-in-out infinite;
}

/* NAV MENU */
nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

nav a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

nav a:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f9c300, #f57c00);
  color: #1e1e1e;
  font-weight: 800;
}

/* ANIMATIONS */
@keyframes logoFiestaPro {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  40% {
    transform: rotate(-1deg) scale(1.03);
  }
  75% {
    transform: rotate(1deg) scale(1.01);
  }
}

@keyframes logoSunGlow {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -40%) scale(0.95);
  }
  50% {
    opacity: 0.9;
    transform: translate(-50%, -40%) scale(1.1);
  }
}

@keyframes logoSpark {
  0%, 70%, 100% {
    opacity: 0;
    transform: scale(0.4) rotate(0deg);
  }
  78% {
    opacity: 1;
    transform: scale(1) rotate(25deg);
  }
  88% {
    opacity: 0;
    transform: scale(1.8) rotate(70deg);
  }
}

/* HERO */
.hero {
  margin-top: 20px;
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  }

.hero-media,
.hero-video,
.hero-overlay,
.hero-sangria-blur {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -4;
  background:
    linear-gradient(135deg, rgba(245, 124, 0, 0.24), rgba(198, 40, 40, 0.38)),
    url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=1600&q=80') center/cover;
}

.hero-overlay {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.84) 0%, rgba(18, 18, 18, 0.54) 42%, rgba(18, 18, 18, 0.75) 100%);
}

.hero-sangria-blur {
  z-index: -2;
  background:
    radial-gradient(circle at 74% 14%, rgba(123, 30, 58, 0.48), transparent 21%),
    radial-gradient(circle at 82% 82%, rgba(249, 195, 0, 0.18), transparent 24%);
  filter: blur(14px);
}

.hero-layout {
  position: relative;
  z-index: 2;
  padding: 90px 0 80px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.hero-content h1 {
  max-width: 860px;
  font-family: 'Bangers', cursive;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.93;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.34);
}

.hero-lead {
  font-size: 1.15rem;
  font-weight: 600;
  max-width: 720px;
  margin-bottom: 16px;
}

.hero-copy {
  max-width: 720px;
  font-size: 1.03rem;
  margin-bottom: 28px;
}

.hero-actions,
.hero-badges,
.hero-trust,
.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-bottom: 22px;
}

.hero-badges {
  margin-bottom: 18px;
}

.hero-badges span,
.booking-panel,
.card,
.reason-card,
.review-card,
.feature-box,
.faq-item,
.contact-card,
.map-card {
  backdrop-filter: blur(12px);
  background: var(--glass);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.hero-trust {
  gap: 12px 18px;
  font-size: 0.96rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-full {
  width: 100%;
}

/* BOOKING PANEL */
.booking-panel {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.14);
}

.panel-topline,
.pill,
.mini-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 195, 0, 0.16);
  color: var(--yellow);
  border: 1px solid rgba(249, 195, 0, 0.3);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.booking-panel h2 {
  font-family: 'Bangers', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin: 16px 0 12px;
  text-transform: uppercase;
}

.booking-form {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form > label:not(.checkbox) span,
.booking-form .form-grid label span {
  font-size: 0.92rem;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-form input:not([type="checkbox"]),
.booking-form select {
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.96);
  color: var(--dark);
  padding: 0 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form input:not([type="checkbox"]):focus,
.booking-form select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(249, 195, 0, 0.18);
}

.form-note {
  text-align: center;
  font-size: 0.92rem;
  margin-top: 2px;
}

/* CHECKBOX */
.booking-form label.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.booking-form label.checkbox input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--yellow);
  cursor: pointer;
  flex-shrink: 0;
}

.booking-form label.checkbox span {
  display: inline;
  font-size: 0.92rem;
  font-weight: 500 !important;
  line-height: 1.45;
}

.booking-form label.checkbox a {
  color: var(--yellow);
  text-decoration: underline;
}

.booking-form label.checkbox a:hover {
  opacity: 0.85;
}

/* TICKER */
.ticker-bar {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(20, 20, 20, 0.24);
}

.ticker-track {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 15px 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: marquee 24s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* GRIDS */
.offer-grid,
.reasons-grid,
.reviews-grid,
.faq-list {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.offer-grid {
  grid-template-columns: repeat(3, 1fr);
}

.reasons-grid {
  grid-template-columns: repeat(4, 1fr);
}

.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* CARDS */
.card,
.reason-card,
.review-card,
.feature-box,
.faq-item {
  border-radius: var(--radius-xl);
  padding: 24px;
}

.card-icon,
.reason-card span {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 20px;
  font-size: 1.9rem;
  margin: 16px 0;
  background: rgba(255, 255, 255, 0.12);
}

.card h3,
.reason-card h3,
.review-card strong,
.faq-item h3,
.contact-card h3 {
  margin-bottom: 10px;
}

.card h3,
.reason-card h3,
.faq-item h3 {
  font-size: 1.28rem;
}

.review-card strong {
  display: inline-block;
  margin-top: 12px;
}

.stars {
  color: var(--yellow);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-weight: 800;
}

/* TWO COLUMN */
.two-col {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: start;
}

.tick-list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.tick-list li::before {
  content: '✓';
  color: var(--yellow);
  font-weight: 800;
  margin-right: 10px;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list-column {
  display: grid;
  gap: 18px;
}

.feature-list strong {
  display: block;
  margin-bottom: 6px;
}

.reason-card span {
  font-size: 1.6rem;
}

.faq-list {
  grid-template-columns: 1fr;
}

.faq-item h3 {
  font-family: 'Bangers', cursive;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
}

/* FINAL CTA */
.final-cta {
  padding-top: 72px;
  padding-bottom: 110px;
}

.final-cta .btn {
  margin-top: 22px;
}

/* CONTACT SECTION */
.contact {
  position: relative;
  margin-top: 0;
  padding-top: 170px;
  background:
    linear-gradient(
      to bottom,
      rgba(198, 40, 40, 0) 0%,
      rgba(198, 40, 40, 0.08) 10%,
      rgba(167, 33, 52, 0.18) 22%,
      rgba(123, 30, 58, 0.38) 38%,
      rgba(108, 27, 53, 0.62) 54%,
      rgba(97, 24, 48, 0.84) 72%,
      #5a162b 100%
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(249, 195, 0, 0.05), transparent 34%),
    radial-gradient(circle at 78% 70%, rgba(245, 124, 0, 0.04), transparent 36%);
  pointer-events: none;
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact .section-heading h2 {
  color: var(--white);
}

.contact .section-heading p {
  color: rgba(255, 255, 255, 0.85);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  margin-top: 50px;
  align-items: stretch;
}

.contact-card,
.map-card {
  border-radius: 12px;
  overflow: hidden;
}

.contact-card {
  padding: 28px;
}

.contact-card h3 {
  font-family: 'Bangers', cursive;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.contact-item strong {
  display: block;
  color: var(--yellow);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.contact-item p,
.contact-item a {
  color: var(--text-soft);
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.map-card {
  min-height: 420px;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

/* FOOTER */
.site-footer {
  padding: 24px 0 36px;
}

.footer-wrap {
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--yellow);
}

code {
  background: rgba(0, 0, 0, 0.18);
  padding: 2px 8px;
  border-radius: 8px;
}

/* LOADING */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(118, 18, 47, 0.96), rgba(190, 22, 28, 0.96));
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-card {
  max-width: 720px;
  padding: 32px;
  border-radius: 28px;
  text-align: center;
  backdrop-filter: blur(12px);
  background: var(--glass);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.loading-kicker {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-bottom: 12px;
}

.loading-card h2 {
  font-family: 'Bangers', cursive;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.beer-progress {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 2rem;
  margin-bottom: 14px;
}

/* SIMPLE PAGES */
.simple-page {
  min-height: calc(100vh - 90px);
  display: grid;
  place-items: center;
  padding: 40px 16px;
}

.simple-box {
  width: min(760px, 100%);
  padding: 34px;
  border-radius: 28px;
  backdrop-filter: blur(12px);
  background: var(--glass);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.simple-box h1 {
  font-family: 'Bangers', cursive;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.simple-box ul {
  margin: 18px 0 22px 20px;
}

/* TABLET */
@media (max-width: 1024px) {
  .hero-layout,
  .two-col,
  .offer-grid,
  .reviews-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1 {
    max-width: 100%;
  }

  .nav-wrap {
    min-height: 70px;
    gap: 24px;
  }

  .site-logo {
    width: 130px;
  }

  nav {
    gap: 16px;
  }

  nav a {
    font-size: 0.86rem;
  }

  .nav-cta {
    padding: 8px 15px;
  }
}

/* MOBILE */
@media (max-width: 680px) {
  nav {
    display: none;
  }

  .section {
    padding: 74px 0;
  }

  .site-header {
    padding: 8px 0;
  }

  .nav-wrap {
    min-height: 80px;
    justify-content: center;
  }

  .site-logo {
    width: 115px;
  }

  .brand-text {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding: 74px 0 58px;
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-badges,
  .hero-trust,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .form-grid,
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .booking-panel,
  .card,
  .reason-card,
  .review-card,
  .feature-box,
  .faq-item,
  .loading-card,
  .simple-box {
    padding: 22px;
    border-radius: 22px;
  }

  .contact-card,
  .map-card {
    padding: 22px;
    border-radius: 8px;
  }

  .ticker-track {
    gap: 22px;
    font-size: 0.85rem;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .map-card,
  .map-card iframe {
    min-height: 320px;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}
