/* =========================================================
   COFRESÍ - EL TESORO DEL SABOR | OFFICIAL STYLESHEET
   Domain: cofresipr.com
   Theme: Luxury Caribbean Pirate Gold & Obsidian
   ========================================================= */

:root {
  --bg-dark: #090704;
  --bg-card: #130f0a;
  --bg-card-hover: #1b150e;
  --gold-primary: #e5a93b;
  --gold-light: #ffd875;
  --gold-dark: #a8721c;
  --gold-gradient: linear-gradient(135deg, #ffd875 0%, #e5a93b 50%, #a8721c 100%);
  --gold-border: rgba(229, 169, 59, 0.35);
  --text-light: #f5f0e6;
  --text-muted: #b8aba0;
  --red-accent: #d93829;
  --font-title: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;
  --font-pirate: 'Pirata One', cursive;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-gold: 0 10px 30px -10px rgba(229, 169, 59, 0.3);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.6);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(229, 169, 59, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(217, 56, 41, 0.03) 0%, transparent 40%);
}

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

.section-padding {
  padding: 80px 0;
}

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

/* Typography & Titles */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-kicker {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-primary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.2;
}

.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  margin: 15px auto 0;
  font-size: 1.05rem;
}

.pirate-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 15px 0 30px;
  color: var(--gold-primary);
}

.pirate-divider::before,
.pirate-divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.pirate-divider.left-align {
  justify-content: flex-start;
}

.pirate-divider.left-align::before {
  display: none;
}

/* Header & Navbar */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 7, 4, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
  transition: var(--transition);
}

.main-header.scrolled {
  background: rgba(9, 7, 4, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 15px rgba(229, 169, 59, 0.3);
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: 1px;
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link i {
  color: var(--gold-primary);
  font-size: 0.85rem;
}

.nav-link:hover {
  color: var(--gold-light);
  transform: translateY(-2px);
}

.nav-btn-order {
  background: var(--gold-gradient);
  color: #090704;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(229, 169, 59, 0.3);
  transition: var(--transition);
}

.nav-btn-order:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(229, 169, 59, 0.5);
}

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
  text-align: center;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(9, 7, 4, 0.85) 0%, 
    rgba(9, 7, 4, 0.7) 50%, 
    rgba(9, 7, 4, 0.98) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  margin: 0 auto;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 169, 59, 0.15);
  border: 1px solid var(--gold-border);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 35px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #090704;
  box-shadow: 0 10px 25px rgba(229, 169, 59, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 30px rgba(229, 169, 59, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(229, 169, 59, 0.2);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.feature-item i {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

/* Badges Showcase */
.badges-showcase {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #110d08 100%);
  position: relative;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.badge-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.badge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
}

.badge-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.badge-img-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  margin-bottom: 25px;
}

.badge-img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
}

.badge-card:hover .badge-img-wrapper img {
  transform: rotate(3deg) scale(1.05);
}

.badge-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-primary);
  background: rgba(229, 169, 59, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.badge-info h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--gold-light);
}

.badge-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.badge-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-meta .price {
  font-weight: 800;
  color: var(--gold-light);
  font-size: 1rem;
}

.badge-order-link {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.badge-order-link:hover {
  color: var(--gold-light);
  gap: 10px;
}

/* Interactive Menu */
.menu-section {
  background: var(--bg-dark);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(229, 169, 59, 0.2);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--gold-gradient);
  color: #090704;
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(229, 169, 59, 0.3);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 24px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.menu-badge-tag {
  position: absolute;
  top: -10px;
  right: 15px;
  background: var(--red-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 12px;
  text-transform: uppercase;
}

.menu-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 10px;
}

.menu-header-row h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.3;
}

.menu-price {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gold-light);
  background: rgba(229, 169, 59, 0.15);
  border: 1px solid var(--gold-primary);
  padding: 2px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

.menu-tag {
  font-size: 0.7rem;
  color: var(--gold-primary);
  background: rgba(229, 169, 59, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.menu-badge-tag.new-tag {
  background: #25d366;
  color: #090704;
  font-weight: 900;
}

.menu-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.menu-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.taste-note {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.taste-note i {
  color: var(--gold-primary);
}

.menu-add-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(229, 169, 59, 0.15);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.menu-add-btn:hover {
  background: var(--gold-gradient);
  color: #090704;
  transform: rotate(90deg);
}

/* Story Section */
.story-section {
  background: linear-gradient(180deg, #110d08 0%, var(--bg-dark) 100%);
  border-top: 1px solid rgba(229, 169, 59, 0.15);
  border-bottom: 1px solid rgba(229, 169, 59, 0.15);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.story-image-box {
  position: relative;
  display: flex;
  justify-content: center;
}

.story-crest {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(229, 169, 59, 0.2);
}

.story-floating-card {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--bg-card);
  border: 1px solid var(--gold-primary);
  padding: 15px 25px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow-card);
}

.stat-number {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.stat-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  max-width: 130px;
}

.story-text-box p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.story-badges-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 25px;
}

.badge-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(229, 169, 59, 0.08);
  border: 1px solid rgba(229, 169, 59, 0.2);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
}

.badge-pill i {
  color: var(--gold-primary);
}

/* Location Single Card */
.location-single-card {
  max-width: 900px;
  margin: 40px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 45px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.location-single-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 169, 59, 0.12);
  color: var(--gold-primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.location-main-content h3 {
  font-size: 2.2rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.address-text {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 35px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: var(--radius-sm);
  margin-bottom: 35px;
  text-align: left;
}

.sched-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sched-label {
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sched-val {
  font-size: 1.05rem;
  color: var(--text-light);
}

.location-buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.btn-google-maps {
  background: #ea4335;
  color: #fff;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(234, 67, 53, 0.3);
}

.btn-google-maps:hover {
  background: #d33426;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(234, 67, 53, 0.5);
}

.btn-waze {
  background: #33ccff;
  color: #090704;
  font-weight: 800;
  justify-content: center;
}

.btn-waze:hover {
  background: #00bfff;
  transform: translateY(-3px);
}

.btn-call-direct {
  background: var(--gold-gradient);
  color: #090704;
  font-weight: 800;
  justify-content: center;
}

.btn-call-direct:hover {
  transform: translateY(-3px);
}

.btn-whatsapp-direct {
  background: #25d366;
  color: #fff;
  font-weight: 800;
  justify-content: center;
}

.btn-whatsapp-direct:hover {
  background: #20ba5a;
  transform: translateY(-3px);
}

/* Social Viral Banner */
.social-banner {
  background: radial-gradient(circle at center, #1b140c 0%, var(--bg-dark) 100%);
  border-top: 1px solid var(--gold-border);
}

.social-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 10px auto 35px;
  max-width: 600px;
}

.social-buttons-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 28px;
  border-radius: 40px;
  text-decoration: none;
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.tiktok-btn {
  background: #000;
  border: 1px solid #fe2c55;
}

.tiktok-btn i {
  font-size: 1.8rem;
  color: #25f4ee;
  text-shadow: -2px -2px 0px #fe2c55;
}

.tiktok-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 30px rgba(254, 44, 85, 0.4);
}

.instagram-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-btn i {
  font-size: 1.8rem;
  color: #fff;
}

.instagram-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 30px rgba(220, 39, 67, 0.4);
}

.btn-text {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.btn-text span {
  font-size: 0.75rem;
  text-transform: uppercase;
  opacity: 0.8;
}

.btn-text strong {
  font-size: 0.95rem;
}

/* Footer */
.main-footer {
  background: #050402;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer-logo span {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold-light);
}

.brand-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: var(--gold-primary);
  margin-bottom: 18px;
}

.links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.links-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.links-col a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.contact-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-col i {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 25px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.bottom-flex a {
  color: var(--gold-primary);
  text-decoration: none;
}

/* Floating Actions (Mobile Only) */
.floating-actions {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
}

.wa-float {
  background: #25d366;
}

.call-float {
  background: var(--gold-primary);
  color: #090704;
}

.map-float {
  background: #4285f4;
}

.float-btn:hover {
  transform: scale(1.12);
}

/* Ceviche Section */
.ceviche-section {
  background: radial-gradient(circle at center, #18120b 0%, var(--bg-dark) 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.ceviche-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 45px;
}

.ceviche-badge-box {
  display: flex;
  justify-content: center;
}

.large-badge {
  width: 280px;
  height: 280px;
}

.large-badge img {
  border-width: 4px;
}

.ceviche-text-box .section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.ceviche-lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.ceviche-ingredients-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.ing-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(229, 169, 59, 0.08);
  border: 1px solid rgba(229, 169, 59, 0.25);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
}

.ing-item i {
  color: #25d366;
}

.ceviche-order-cta .btn {
  padding: 16px 35px;
  font-size: 1.05rem;
}

/* ATH Movil Banner */
.ath-payment-banner {
  background: linear-gradient(135deg, rgba(229, 169, 59, 0.1) 0%, rgba(37, 211, 102, 0.08) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 25px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.ath-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ath-icon {
  font-size: 2.5rem;
  color: #ff6b00;
  background: rgba(255, 107, 0, 0.1);
  padding: 15px;
  border-radius: 12px;
}

.ath-left h4 {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.ath-left p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.ath-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pay-tag {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--gold-border);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pay-tag i {
  color: #25d366;
}

/* FAQ Section */
.faq-section {
  background: var(--bg-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 28px;
  transition: var(--transition);
}

.faq-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.faq-card h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}

.faq-card h4 i {
  color: var(--gold-primary);
  margin-top: 3px;
  font-size: 1rem;
}

.faq-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 24px;
}

/* Responsive Media Queries */
@media (max-width: 980px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .story-grid,
  .ceviche-showcase-grid,
  .footer-content,
  .ath-payment-banner {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }
  .ath-left {
    flex-direction: column;
  }
  .pirate-divider.left-align {
    justify-content: center;
  }
  .story-image-box,
  .ceviche-badge-box {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(9, 7, 4, 0.98);
    flex-direction: column;
    padding: 25px;
    border-bottom: 1px solid var(--gold-border);
    gap: 18px;
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .floating-actions {
    display: flex;
  }
  .section-padding {
    padding: 60px 0;
  }
}

