/* === MARISCO RECIO - Sistema de Diseño Premium === */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,800;1,400&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  /* Paleta principal */
  --navy: #060F1E;
  --navy-light: #0B1D3A;
  --navy-mid: #132D56;
  --navy-lighter: #1A3D6E;

  /* Dorado premium */
  --gold: #C9A44B;
  --gold-light: #E0C878;
  --gold-dark: #A07828;
  --gold-pale: #F5EDD6;

  /* Neutros */
  --white: #FFFFFF;
  --cream: #FAF7F0;
  --gray-50: #F8F9FB;
  --gray-100: #F0F2F5;
  --gray-200: #E2E6EA;
  --gray-300: #CBD1D8;
  --gray-500: #6B7280;
  --gray-700: #364153;
  --gray-900: #111827;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-bg-white: rgba(255, 255, 255, 0.7);
  --glass-border-white: rgba(0, 0, 0, 0.06);

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 24px 48px rgba(0,0,0,0.14), 0 8px 20px rgba(0,0,0,0.08);
  --shadow-gold: 0 8px 32px rgba(201, 164, 75, 0.18);

  /* Transiciones */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-base: 350ms;
  --duration-slow: 600ms;
}

/* === Reset & Base === */
body {
  font-family: 'DM Sans', sans-serif;
  scroll-behavior: smooth;
  background: var(--white);
  color: var(--gray-700);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .font-display {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* === Nautical decorative pattern === */
.pattern-nautical {
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201, 164, 75, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 164, 75, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(11, 29, 58, 0.02) 0%, transparent 70%);
}

.pattern-lines {
  background-image:
    linear-gradient(rgba(201, 164, 75, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 164, 75, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* === Navbar glass morphism === */
.nav-blur {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(6, 15, 30, 0.85);
  border-bottom: 1px solid rgba(201, 164, 75, 0.1);
}

.nav-link {
  position: relative;
  transition: color var(--duration-fast) var(--ease-out-expo);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--duration-base) var(--ease-out-expo);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--gold);
}

/* === Hero section === */
.hero-banner {
  background: url('../hero-banner.png') center/cover no-repeat;
  min-height: 100vh;
  padding-top: 9rem; /* navbar (5rem) + espacio extra */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-decor {
  transition: transform 0.1s linear;
}

/* === Glass card === */
.glass-card {
  background: var(--glass-bg-white);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--glass-border-white);
  border-radius: 20px;
  transition: all var(--duration-base) var(--ease-out-expo);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* === Category cards === */
.cat-card {
  position: relative;
  transition: box-shadow var(--duration-base) var(--ease-out-expo), border-color var(--duration-base) var(--ease-out-expo);
  transform-style: preserve-3d;
}

.cat-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}

/* === Product card === */
.product-card {
  position: relative;
  transition: box-shadow var(--duration-base) var(--ease-out-expo), border-color var(--duration-base) var(--ease-out-expo);
  border: 1px solid rgba(201, 164, 75, 0.12);
  transform-style: preserve-3d;
}

.product-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}

/* Overlay en hover para la imagen del producto */
.product-card > div:first-child {
  position: relative;
  overflow: hidden;
}

.product-card > div:first-child::after {
  content: 'Ver detalles';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 15, 30, 0) 35%, rgba(6, 15, 30, 0.82) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out-expo);
}

.product-card:hover > div:first-child::after {
  opacity: 1;
}

.product-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
}

.badge-fresh { background: rgba(201, 164, 75, 0.15); color: var(--gold-dark); }
.badge-top { background: var(--navy); color: var(--white); }
.badge-premium { background: rgba(201, 164, 75, 0.25); color: var(--navy); }

/* === WhatsApp floating button === */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1DA851);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.36);
  transition: all var(--duration-base) var(--ease-out-back);
  animation: pulse-wa 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.36); }
  50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.65); }
}

/* === Buttons === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 12px;
  transition: all var(--duration-base) var(--ease-out-expo);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 164, 75, 0.3);
}

.btn-primary svg {
  transition: transform var(--duration-base) var(--ease-out-expo);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: all var(--duration-base) var(--ease-out-expo);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 164, 75, 0.08);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #1DA851);
  color: white;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  padding: 12px 24px;
  border-radius: 100px;
  transition: all var(--duration-base) var(--ease-out-expo);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* === Section titles === */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* === Wave dividers === */
.wave-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(140% + 1.3px);
  height: 70px;
}

/* === Form styles === */
.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--white);
  transition: all var(--duration-fast) var(--ease-out-expo);
  outline: none;
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 164, 75, 0.1);
}

.form-input.input-error {
  border-color: #EF4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}

.form-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  display: block;
}

.error-message {
  color: #EF4444;
  font-size: 0.78rem;
  margin-top: 5px;
  font-weight: 500;
}

.success-message {
  animation: fadeInUp 0.3s ease forwards;
}

/* === Category tabs === */
.tab-btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 12px 24px;
  border-radius: 100px;
  transition: all var(--duration-fast) var(--ease-out-expo);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  cursor: pointer;
}

.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}

.tab-btn:not(.active):hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

/* === Scroll reveal === */
.reveal {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo),
              visibility 0.8s;
}

.reveal.revealed {
  opacity: 1;
  visibility: visible;
}

.reveal-fade-up { transform: translateY(48px); }
.reveal-fade-up.revealed { transform: translateY(0); }

.reveal-fade-down { transform: translateY(-36px); }
.reveal-fade-down.revealed { transform: translateY(0); }

.reveal-fade-left { transform: translateX(-48px); }
.reveal-fade-left.revealed { transform: translateX(0); }

.reveal-fade-right { transform: translateX(48px); }
.reveal-fade-right.revealed { transform: translateX(0); }

.reveal-scale { transform: scale(0.88); }
.reveal-scale.revealed { transform: scale(1); }

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }
.reveal-delay-7 { transition-delay: 0.56s; }
.reveal-delay-8 { transition-delay: 0.64s; }

/* === Hero text entrance === */
.hero-title {
  animation: heroReveal 0.9s var(--ease-out-expo) forwards;
}
.hero-subtitle {
  animation: heroReveal 0.9s 0.18s var(--ease-out-expo) forwards;
  opacity: 0;
}
.hero-text {
  animation: heroReveal 0.9s 0.32s var(--ease-out-expo) forwards;
  opacity: 0;
}
.hero-cta {
  animation: heroReveal 0.9s 0.46s var(--ease-out-expo) forwards;
  opacity: 0;
}

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

/* === Logo float === */
@keyframes gentle-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.logo-float {
  animation: gentle-float 5s ease-in-out infinite;
}

/* === Stats counter section === */
.stat-number {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}

/* === Contact info card === */
.contact-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(201, 164, 75, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* === Map placeholder === */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

/* === Footer === */
.footer-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold);
}

/* === Custom scrollbar === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb { background: var(--navy-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy); }

/* === Selection === */
::selection {
  background: rgba(201, 164, 75, 0.25);
  color: var(--navy);
}

/* === Legacy animation classes === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
/* === Accesibilidad: Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* === Accesibilidad: Skip to Content === */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 99999;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s var(--ease-out-expo);
}
.skip-to-content:focus {
  top: 0;
}

/* === Accesibilidad: Focus Visible === */
:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* === Back to Top Button === */
.back-to-top {
  position: fixed;
  bottom: 108px;
  left: 32px;
  z-index: 9998;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(201, 164, 75, 0.25);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--duration-base) var(--ease-out-expo);
  box-shadow: var(--shadow-lg);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* === Sticky Mobile CTA Bar === */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9997;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray-200);
  padding: 10px 16px;
  gap: 10px;
}
@media (max-width: 767px) {
  .mobile-cta-bar {
    display: flex;
  }
  .whatsapp-float {
    bottom: 80px;
  }
  .back-to-top {
    bottom: 140px;
    left: 16px;
  }
}
.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.82rem;
  font-family: 'DM Sans', sans-serif;
  transition: all var(--duration-fast) var(--ease-out-expo);
}
.mobile-cta-call {
  background: var(--navy);
  color: var(--white);
}
.mobile-cta-wa {
  background: #25D366;
  color: white;
}

/* === Search Bar === */
.search-input {
  width: 100%;
  max-width: 360px;
  padding: 12px 18px 12px 44px;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--gray-900);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E") 14px center no-repeat;
  outline: none;
  transition: all var(--duration-fast) var(--ease-out-expo);
}
.search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 164, 75, 0.1);
}

/* === Breadcrumbs === */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--gray-500);
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--duration-fast);
}
.breadcrumbs a:hover {
  color: var(--navy);
}
.breadcrumbs .bc-sep {
  color: var(--gray-300);
  user-select: none;
}
.breadcrumbs .bc-current {
  color: var(--navy);
  font-weight: 600;
}
/* Breadcrumbs sobre fondo oscuro */
.bg-navy .breadcrumbs .bc-current,
main .breadcrumbs .bc-current {
  color: var(--white);
}
.bg-navy .breadcrumbs,
main .breadcrumbs {
  color: rgba(255, 255, 255, 0.5);
}
.bg-navy .breadcrumbs a,
main .breadcrumbs a {
  color: var(--gold);
}
.bg-navy .breadcrumbs a:hover,
main .breadcrumbs a:hover {
  color: var(--gold-light);
}
.bg-navy .breadcrumbs .bc-sep,
main .breadcrumbs .bc-sep {
  color: rgba(255, 255, 255, 0.3);
}

/* === Cookie Consent Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--gray-700);
  transform: translateY(100%);
  transition: transform var(--duration-base) var(--ease-out-expo);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner p {
  max-width: 500px;
  margin: 0;
  line-height: 1.5;
}
.cookie-banner .cookie-btn {
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.78rem;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: none;
  transition: all var(--duration-fast) var(--ease-out-expo);
}
.cookie-btn-accept {
  background: var(--navy);
  color: var(--white);
}
.cookie-btn-accept:hover {
  background: var(--navy-mid);
}
.cookie-btn-reject {
  background: var(--gray-100);
  color: var(--gray-700);
}
.cookie-btn-reject:hover {
  background: var(--gray-200);
}

/* === 404 Page === */
.not-found-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--cream);
  padding: 40px 20px;
}
.not-found-code {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  opacity: 0.06;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* === Product category images === */
.product-item[data-category="pescados"] > div:first-child {
  background: url('../seccion-pescados.png') center/cover no-repeat;
}
.product-item[data-category="pescados"] > div:first-child svg {
  display: none;
}
.product-item[data-category="mariscos"] > div:first-child {
  background: url('../seccion-mariscos.png') center/cover no-repeat;
}
.product-item[data-category="mariscos"] > div:first-child svg {
  display: none;
}
.product-item[data-category="carnes"] > div:first-child {
  background: url('../seccion-carnes.png') center/cover no-repeat;
}
.product-item[data-category="carnes"] > div:first-child svg {
  display: none;
}
.product-item[data-category="hamburguesas-croquetas"] > div:first-child {
  background: url('../seccion-hamburguesas-croquetas.png') center/cover no-repeat;
}
.product-item[data-category="hamburguesas-croquetas"] > div:first-child svg {
  display: none;
}

/* === Language Selector (floating top-right) === */
.lang-float {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
}

/* Hide container until Google fills it */
.lang-float:empty {
  display: none;
}

/* Hide Google banner bar, status bar, and injected iframes */
.goog-te-banner-frame,
body > .skiptranslate,
body > iframe[id^=":"],
iframe.goog-te-banner-frame {
  display: none !important;
}

/* Prevent banner from pushing body down */
body {
  top: 0 !important;
  position: static !important;
}

/* Shrink text nodes (Powered by) to nothing — keep text selectable but invisible */
.goog-te-gadget {
  font-size: 0 !important;
}

/* Hide Google logo and branding spans */
.goog-te-gadget img,
.goog-te-gadget > span {
  display: none !important;
}

/* Style the language dropdown */
.goog-te-combo {
  display: inline-block !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.72rem !important;
  line-height: 1.4 !important;
  font-weight: 700 !important;
  color: white !important;
  background: rgba(6, 15, 30, 0.9) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 164, 75, 0.3) !important;
  border-radius: 10px !important;
  padding: 10px 34px 10px 14px !important;
  outline: none !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23C9A44B'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  width: auto !important;
  min-width: 80px !important;
}

.goog-te-combo:hover {
  border-color: var(--gold) !important;
  background-color: rgba(11, 29, 58, 0.95) !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35) !important;
}

.goog-te-combo option {
  background: var(--navy) !important;
  color: white !important;
  font-family: 'DM Sans', sans-serif !important;
}

@media (max-width: 767px) {
  .lang-float {
    top: 16px;
    right: 12px;
  }
  .goog-te-combo {
    font-size: 0.68rem !important;
    padding: 8px 28px 8px 10px !important;
  }
}

/* === Hero gold text glow === */
.hero-title .text-gold {
  animation: gold-glow 3s ease-in-out infinite;
}

/* === Vertical hero slideshow === */
.hero-slideshow {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 340px;
  overflow: hidden;
  z-index: 5;
  pointer-events: none;
  display: none;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 100%);
}

@media (min-width: 1024px) {
  .hero-slideshow {
    display: block;
  }
}

.hero-slideshow-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0;
  animation: slide-vertical 42s linear infinite;
  contain: layout style;
}

.hero-slideshow-track img {
  width: 280px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
  opacity: 0.85;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  background: #0B1D3A;
}

@keyframes slide-vertical {
  0% { transform: translate3d(0, -50%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* === About image cards (3-pillar gallery) === */
.about-image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 32px rgba(6, 15, 30, 0.25);
  border: 1.5px solid rgba(201, 164, 75, 0.18);
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-card:hover img {
  transform: scale(1.06);
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 15, 30, 0.15) 0%, rgba(6, 15, 30, 0.3) 50%, rgba(6, 15, 30, 0.7) 100%);
  pointer-events: none;
}

.about-image-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #C9A44B;
  text-shadow: 0 2px 8px rgba(6, 15, 30, 0.6);
}

/* === Ship wheel (timón) next to hero title === */
.helm-wheel {
  display: inline-block;
  animation: helm-spin 8s linear infinite;
  filter: drop-shadow(0 0 10px rgba(201, 164, 75, 0.3));
  flex-shrink: 0;
  position: relative;
  top: 0.08em;
}

@keyframes helm-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes gold-glow {
  0%, 100% { text-shadow: 0 0 20px rgba(201, 164, 75, 0.3); }
  50% { text-shadow: 0 0 32px rgba(201, 164, 75, 0.6), 0 0 64px rgba(201, 164, 75, 0.2); }
}
