/* ===== MYRIAD PRO FONT FACES ===== */
@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/MyriadPro-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/MYRIADPRO-REGULAR.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/MYRIADPRO-COND.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-stretch: condensed;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/MYRIADPRO-CONDIT.OTF") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-stretch: condensed;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/MYRIADPRO-SEMIBOLD.OTF") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/MYRIADPRO-SEMIBOLDIT.OTF") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/MYRIADPRO-BOLD.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/MYRIADPRO-BOLDIT.OTF") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/MYRIADPRO-BOLDCOND.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-stretch: condensed;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/MYRIADPRO-BOLDCONDIT.OTF") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-stretch: condensed;
  font-display: swap;
}

/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colores corporativos IPUC */
  --ipuc-blue-dark: #001a4d;
  --ipuc-blue: #00338d;
  --ipuc-blue-medium: #0066b3;
  --ipuc-blue-light: #009fda;
  --ipuc-gold: #f0ab00;
  --ipuc-gold-light: #ffc333;
  --ipuc-gold-dark: #cc9200;
  --ipuc-white: #ffffff;
  --ipuc-cream: #f5f7fa;
  --ipuc-gray-light: #e8ecf1;
  --ipuc-gray: #6b7280;
  --ipuc-gray-dark: #374151;

  /* Tipografía */
  --font-sans:
    "Myriad Pro", "Myriad", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-display:
    "Myriad Pro", "Myriad", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transiciones */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--ipuc-gray-dark);
  background-color: var(--ipuc-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  margin: 0;
}

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

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

ul,
ol {
  list-style: none;
}

/* ===== SCROLL BAR ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--ipuc-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--ipuc-blue);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ipuc-blue-light);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 51, 141, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240, 171, 0, 0.25);
  transition: var(--transition);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ipuc-white);
}

.navbar-brand .brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--ipuc-white);
  padding: 2px;
}

.navbar-links {
  display: flex;
  gap: 0.25rem;
}

.navbar-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar-links a:hover {
  color: var(--ipuc-gold);
  background: rgba(240, 171, 0, 0.1);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ipuc-gold);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    ellipse at 30% 50%,
    var(--ipuc-blue-light) 0%,
    var(--ipuc-blue-medium) 40%,
    var(--ipuc-blue) 70%,
    var(--ipuc-blue-dark) 100%
  );
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(240, 171, 0, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 159, 218, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(240, 171, 0, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}

.hero-decoration-1 {
  width: 600px;
  height: 600px;
  background: var(--ipuc-gold);
  top: -200px;
  right: -200px;
}

.hero-decoration-2 {
  width: 400px;
  height: 400px;
  background: var(--ipuc-gold);
  bottom: -150px;
  left: -150px;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240, 171, 0, 0.15);
  border: 1px solid rgba(240, 171, 0, 0.3);
  color: var(--ipuc-gold-light);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease-out;
}

.hero-badge span {
  font-size: 1rem;
}

.hero-badge-logo {
  height: 1.5rem;
  width: auto;
  object-fit: contain;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--ipuc-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title .gold-text {
  color: var(--ipuc-gold);
  display: block;
}

.hero-date {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(240, 171, 0, 0.15);
  border: 1px solid rgba(240, 171, 0, 0.4);
  color: var(--ipuc-gold-light);
  padding: 0.6rem 1.6rem;
  border-radius: var(--radius-xl);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.mini-calendar {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  overflow: hidden;
  min-width: 68px;
  border: 1px solid rgba(240, 171, 0, 0.35);
}

.mini-calendar-header {
  background: var(--ipuc-gold);
  color: var(--ipuc-blue-dark);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  width: 100%;
  padding: 2px 0;
  line-height: 1.3;
}

.mini-calendar-days {
  display: flex;
  gap: 2px;
  padding: 4px 5px;
}

.mini-calendar-days span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--ipuc-white);
  background: rgba(240, 171, 0, 0.25);
  border-radius: 3px;
}

.hero-date-icon {
  font-size: 1.2em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
}

.btn-primary {
  background: linear-gradient(135deg, var(--ipuc-gold), var(--ipuc-gold-light));
  color: var(--ipuc-blue-dark);
  border-color: var(--ipuc-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 171, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--ipuc-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  border-color: var(--ipuc-gold);
  color: var(--ipuc-gold);
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(240, 171, 0, 0.5), transparent);
}

/* ===== SECTIONS GENERAL ===== */
.section {
  padding: 5rem 1.5rem;
}

.section-dark {
  background: linear-gradient(135deg, var(--ipuc-blue-dark), var(--ipuc-blue));
  color: var(--ipuc-white);
}

.section-light {
  background: var(--ipuc-cream);
}

.section-white {
  background: var(--ipuc-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ipuc-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--ipuc-blue-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-dark .section-title {
  color: var(--ipuc-white);
}

.section-description {
  font-size: 1.05rem;
  color: var(--ipuc-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-dark .section-description {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== VENUE INFO ===== */
.venue-card {
  background: var(--ipuc-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.venue-map {
  width: 100%;
  height: 300px;
  border: none;
}

.venue-details {
  padding: 2.5rem;
}

.venue-details h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ipuc-blue);
  margin-bottom: 1.5rem;
}

.venue-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.venue-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.venue-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(
    135deg,
    rgba(240, 171, 0, 0.1),
    rgba(240, 171, 0, 0.2)
  );
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.venue-info-text h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ipuc-gray);
  margin-bottom: 0.25rem;
}

.venue-info-text p {
  font-size: 0.95rem;
  color: var(--ipuc-blue);
  font-weight: 600;
}

.venue-info-text a {
  color: var(--ipuc-blue-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.venue-info-text a:hover {
  color: var(--ipuc-gold);
}

/* ===== VENUE GALLERY ===== */
.venue-gallery {
  margin-top: 2.5rem;
}

.venue-gallery-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ipuc-blue);
  margin-bottom: 1.25rem;
  text-align: center;
}

.venue-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.venue-gallery-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.venue-gallery-img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--ipuc-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ipuc-gold), var(--ipuc-blue-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.info-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--ipuc-blue),
    var(--ipuc-blue-medium)
  );
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ipuc-blue);
  margin-bottom: 1rem;
}

.info-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.info-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ipuc-gray-dark);
}

.info-card li .item-bullet {
  color: var(--ipuc-gold);
  font-weight: 700;
  min-width: 8px;
  margin-top: 2px;
}

.info-card .item-name {
  font-weight: 600;
  color: var(--ipuc-blue);
}

.info-card .item-address {
  color: var(--ipuc-gray);
  font-size: 0.85rem;
}

/* ===== HOTEL TABLE ===== */
.hotel-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--ipuc-white);
}

.hotel-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hotel-table thead {
  background: linear-gradient(
    135deg,
    var(--ipuc-blue),
    var(--ipuc-blue-medium)
  );
  color: var(--ipuc-white);
}

.hotel-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hotel-table td {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--ipuc-gray-light);
  vertical-align: middle;
}

.hotel-table tbody tr {
  transition: var(--transition);
}

.hotel-table tbody tr:hover {
  background: rgba(0, 159, 218, 0.04);
}

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

.hotel-name {
  font-weight: 600;
  color: var(--ipuc-blue);
}

.hotel-location {
  color: var(--ipuc-gray);
  font-size: 0.85rem;
}

.hotel-tel {
  color: var(--ipuc-blue-light);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.hotel-tel:hover {
  color: var(--ipuc-gold);
  text-decoration: underline;
}

.hotel-price {
  font-weight: 700;
  color: var(--ipuc-blue);
}

.hotel-nota {
  color: var(--ipuc-gray);
  font-size: 0.8rem;
  font-weight: 400;
}

/* ===== PICO Y PLACA ===== */
.pico-placa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pico-placa-item {
  background: var(--ipuc-white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.pico-placa-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pico-placa-item .day {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ipuc-gray);
  margin-bottom: 0.5rem;
}

.pico-placa-item .plates {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ipuc-blue);
  font-family: var(--font-display);
}

.pico-placa-item.no-restriction {
  background: linear-gradient(
    135deg,
    rgba(240, 171, 0, 0.08),
    rgba(240, 171, 0, 0.15)
  );
  border-color: rgba(240, 171, 0, 0.2);
}

.pico-placa-item.no-restriction .plates {
  color: var(--ipuc-gold-dark);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  font-weight: 700;
}

.pico-placa-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(240, 171, 0, 0.1);
  border: 1px solid rgba(240, 171, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--ipuc-blue);
  font-weight: 500;
}

.pico-placa-note .note-icon {
  font-size: 1.25rem;
}

/* ===== TIPS ===== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.tip-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.tip-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.tip-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--ipuc-gold), var(--ipuc-gold-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.tip-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ipuc-white);
  margin-bottom: 0.5rem;
}

.tip-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.tip-link {
  color: var(--ipuc-gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: var(--transition);
}

.tip-link:hover {
  color: var(--ipuc-gold);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ipuc-blue-dark);
  color: rgba(255, 255, 255, 0.5);
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(240, 171, 0, 0.15);
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ipuc-gold);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.footer p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-divider {
  width: 40px;
  height: 2px;
  background: var(--ipuc-gold);
  margin: 1.5rem auto;
  border-radius: 2px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 51, 141, 0.98);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid rgba(240, 171, 0, 0.25);
  }

  .navbar-links.open {
    display: flex;
  }

  .navbar-links a {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    min-height: 90vh;
    padding: 5rem 1.25rem 3rem;
  }

  .section {
    padding: 3.5rem 1.25rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .venue-info-grid {
    grid-template-columns: 1fr;
  }

  .venue-gallery-grid {
    grid-template-columns: 1fr;
  }

  .venue-gallery-img {
    height: 200px;
  }

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

  .tips-grid {
    grid-template-columns: 1fr;
  }

  /* ── Hotel table → card layout on mobile ── */
  .hotel-table thead {
    display: none;
  }

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

  .hotel-table tr {
    padding: 1rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--ipuc-gray-light);
    position: relative;
  }

  .hotel-table tr:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }

  .hotel-table td {
    padding: 0.15rem 0;
    border-bottom: none;
    text-align: left;
  }

  /* Hide the # column on mobile */
  .hotel-table td:first-child {
    display: none;
  }

  .hotel-table td:nth-child(2) strong {
    font-size: 1rem;
    color: var(--ipuc-blue);
  }

  .hotel-table td:nth-child(2) small {
    color: var(--ipuc-gray);
  }

  .hotel-table td:nth-child(3)::before {
    content: "📞 ";
  }

  .hotel-table td:nth-child(4)::before {
    content: "💰 ";
  }

  .hotel-table td:nth-child(3),
  .hotel-table td:nth-child(4) {
    font-size: 0.9rem;
    padding-top: 0.25rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .info-card {
    padding: 1.5rem;
  }

  .venue-details {
    padding: 1.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
