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

:root {
  --gold-primary: #D4AF37;
  --gold-light: #F4E4C1;
  --gold-dark: #B8941E;
  --beige: #E8D7B5;
  --black: #1A1A1A;
  --charcoal: #2C2C2C;
  --grey: #3A3A3A;
  --white: #FAFAFA;
  --red-accent: #8B4513;
}

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(13, 13, 13, 0);
  backdrop-filter: blur(0px);
  transition: all 0.5s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  padding: 15px 40px;
  box-shadow: 0 5px 30px rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-primary));
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--gold-primary);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background: rgba(13, 13, 13, 0.98);
      backdrop-filter: blur(20px);
      flex-direction: column;
      padding: 100px 40px;
      gap: 30px;
      transition: right 0.4s ease;
      border-left: 2px solid var(--gold-primary);
  }

  .nav-links.active {
      right: 0;
  }

  .menu-toggle {
      display: flex;
      z-index: 1001;
  }

  .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
  }

  .menu-toggle.active span:nth-child(2) {
      opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
  }
}

/* Cursor personalizado */
body {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8" fill="%23D4AF37" opacity="0.5"/><circle cx="12" cy="12" r="3" fill="%23F4E4C1"/></svg>') 12 12, auto;
}

a, button {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="12" fill="%23D4AF37" opacity="0.7"/><circle cx="16" cy="16" r="6" fill="%23F4E4C1"/></svg>') 16 16, pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      repeating-linear-gradient(
          0deg,
          transparent,
          transparent 2px,
          rgba(212, 175, 55, 0.03) 2px,
          rgba(212, 175, 55, 0.03) 4px
      );
  pointer-events: none;
  animation: scanlines 8s linear infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at center,
      transparent 0%,
      rgba(0, 0, 0, 0.4) 100%
  );
  pointer-events: none;
}

@keyframes scanlines {
  0% { transform: translateY(0); }
  100% { transform: translateY(10px); }
}

/* Hero Image */
.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.4;
    filter: brightness(0.7) contrast(1.1);
    transition: all 0.3s ease;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.85) 0%,
        rgba(26, 26, 26, 0.6) 50%,
        rgba(26, 26, 26, 0.85) 100%
    );
    z-index: 1;
}

/* Ajustar z-index de elementos hero */
.hero-bg {
  z-index: 0;
}

.hero-shapes {
  z-index: 1;
}

.particles {
  z-index: 1;
}

.floating-kebab {
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 20px;
}

.scroll-indicator {
  z-index: 3;
}

/* Efecto hover opcional para desktop */
@media (min-width: 1024px) {
    .hero:hover .hero-image {
        opacity: 0.5;
        transform: scale(1.05);
        filter: brightness(0.8) contrast(1.2);
    }
}

/* Responsive para hero image */
@media (max-width: 768px) {
    .hero-image {
        object-position: center;
        opacity: 0.3;
    }
    
    .hero-image-overlay {
        background: linear-gradient(
            135deg,
            rgba(26, 26, 26, 0.9) 0%,
            rgba(26, 26, 26, 0.75) 50%,
            rgba(26, 26, 26, 0.9) 100%
        );
    }
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="g1"><stop offset="0%" stop-color="%23D4AF37" stop-opacity="0.15"/><stop offset="100%" stop-color="%231A1A1A" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="150" r="300" fill="url(%23g1)"/><circle cx="1000" cy="650" r="400" fill="url(%23g1)"/></svg>') no-repeat center;
  background-size: cover;
  opacity: 0.6;
}

/* Animated shapes */
.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border: 2px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}

.shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation: float-shape 20s ease-in-out infinite;
}

.shape:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: 10%;
  animation: float-shape 15s ease-in-out infinite reverse;
}

.shape:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 20%;
  animation: float-shape 18s ease-in-out infinite;
}

@keyframes float-shape {
  0%, 100% {
      transform: translate(0, 0) rotate(0deg);
  }
  33% {
      transform: translate(50px, -50px) rotate(120deg);
  }
  66% {
      transform: translate(-30px, 30px) rotate(240deg);
  }
}

/* Floating kebab images */
.floating-kebab {
  position: absolute;
  font-size: 80px;
  opacity: 0.1;
  pointer-events: none;
  filter: blur(2px);
}

.floating-kebab:nth-child(1) { top: 10%; left: 5%; }
.floating-kebab:nth-child(2) { top: 70%; right: 10%; }
.floating-kebab:nth-child(3) { bottom: 20%; left: 15%; }
.floating-kebab:nth-child(4) { top: 30%; right: 5%; }

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 12vw, 8rem);
  letter-spacing: 0.05em;
  color: var(--gold-light);
  text-shadow: 
      0 0 20px rgba(212, 175, 55, 0.6),
      0 0 40px rgba(212, 175, 55, 0.4),
      4px 4px 0 rgba(232, 215, 181, 0.3),
      0 0 80px rgba(212, 175, 55, 0.2);
  margin-bottom: 0.5rem;
  line-height: 0.9;
  position: relative;
}

.hero h1::before {
  content: 'MIRANO';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: var(--gold-primary);
  opacity: 0.3;
  filter: blur(10px);
  z-index: -1;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { opacity: 0.3; filter: blur(10px); }
  to { opacity: 0.6; filter: blur(15px); }
}

/* Particles background */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 20s infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-100vh) translateX(50px); }
  50% { transform: translateY(-200vh) translateX(-50px); }
  75% { transform: translateY(-300vh) translateX(30px); }
}

.hero-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--beige);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 300;
}

.cta-button {
  display: inline-block;
  padding: 18px 50px;
  background: var(--gold-primary);
  color: var(--black);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--gold-light);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  transition: left 0.3s ease;
  z-index: -1;
}

.cta-button:hover::before {
  left: 0;
}

.cta-button:hover {
  color: var(--black);
  border-color: var(--gold-light);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

/* Sections */
section {
  padding: 100px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  text-align: center;
  margin-bottom: 60px;
  color: var(--gold-primary);
  letter-spacing: 0.05em;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: var(--gold-primary);
  margin: 20px auto 0;
}

/* About Section */
.about {
  background: var(--grey);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  padding: 40px;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.about-text .highlight {
  color: var(--gold-primary);
  font-weight: 600;
}

.about-image {
  position: relative;
  height: 500px;
  border: 3px solid var(--gold-primary);
  overflow: hidden;
  box-shadow: 
      0 0 30px rgba(196, 30, 58, 0.3),
      inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.about-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-image::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(26, 26, 26, 0.3) 0%, transparent 50%, rgba(212, 175, 55, 0.1) 100%);
z-index: 1;
pointer-events: none;
}

.about-image::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(212, 175, 55, 0.05) 10px,
      rgba(212, 175, 55, 0.05) 20px
  );
  animation: slide 20s linear infinite;
  z-index: 2;
}

@keyframes slide {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Steam effect */
.steam {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  z-index: 3;
}

.steam span {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(20px);
  animation: rise 4s ease-in infinite;
}

.steam span:nth-child(2) {
  animation-delay: 1s;
  left: 40%;
}

.steam span:nth-child(3) {
  animation-delay: 2s;
  left: 60%;
}

@keyframes rise {
  0% {
      opacity: 0;
      transform: translateY(0) scale(1);
  }
  50% {
      opacity: 0.5;
  }
  100% {
      opacity: 0;
      transform: translateY(-200px) scale(2);
  }
}

/* Menu Section */
.menu {
background: var(--black);
padding: 100px 20px;
}

.menu-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
max-width: 1400px;
margin: 60px auto 0;
}

@media (min-width: 768px) {
.menu-grid {
grid-template-columns: repeat(3, 1fr);
}
}

@media (max-width: 767px) {
.menu-grid {
grid-template-columns: 1fr;
}
}

.menu-card {
background: linear-gradient(135deg, var(--charcoal), var(--black));
border: 2px solid var(--gold-primary);
border-radius: 15px;
overflow: hidden;
position: relative;
transition: all 0.4s ease;
cursor: pointer;
display: flex;
flex-direction: column;
}

.menu-card:hover {
transform: translateY(-15px) rotateX(5deg);
box-shadow: 0 30px 60px rgba(212, 175, 55, 0.4);
border-color: var(--gold-light);
}

.menu-image {
width: 100%;
height: 200px;
overflow: hidden;
position: relative;
}

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

.menu-card:hover .menu-image img {
transform: scale(1.1);
}

.menu-content {
padding: 25px;
position: relative;
flex: 1;
display: flex;
flex-direction: column;
text-align: center;
}

.menu-badge {
position: absolute;
top: -110px;
right: 20px;
background: var(--gold-primary);
color: var(--black);
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: bold;
box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
z-index: 10;
border: 3px solid var(--black);
}

.menu-content h3 {
font-family: 'Bebas Neue', sans-serif;
font-size: 2rem;
color: var(--gold-primary);
margin-bottom: 15px;
letter-spacing: 0.05em;
}

.menu-content p {
color: var(--white);
line-height: 1.6;
margin-bottom: 20px;
flex: 1;
font-size: 0.95rem;
opacity: 0.9;
}

.menu-card .price {
font-family: 'Bebas Neue', sans-serif;
font-size: 2.5rem;
color: var(--black);
text-align: center;
background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
padding: 10px;
border-radius: 10px;
text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Carta del Menú Section */
.menu-carta {
background: var(--grey);
padding: 100px 20px;
position: relative;
overflow: hidden;
}

.menu-carta::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
          radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
pointer-events: none;
}

.carta-container {
max-width: 1400px;
margin: 60px auto 0;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
position: relative;
z-index: 1;
}

.carta-image-wrapper {
position: relative;
border: 4px solid var(--gold-primary);
border-radius: 15px;
overflow: hidden;
box-shadow: 
  0 20px 60px rgba(0, 0, 0, 0.5),
  0 0 40px rgba(212, 175, 55, 0.3);
cursor: pointer;
transition: all 0.5s ease;
background: var(--black);
}

.carta-image-wrapper:hover {
transform: scale(1.02);
box-shadow: 
  0 30px 80px rgba(0, 0, 0, 0.7),
  0 0 60px rgba(212, 175, 55, 0.5);
border-color: var(--gold-light);
}

.carta-image {
width: 100%;
height: auto;
display: block;
transition: transform 0.5s ease;
}

.carta-image-wrapper:hover .carta-image {
transform: scale(1.05);
}

.carta-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(26, 26, 26, 0.95), transparent);
padding: 30px;
text-align: center;
transform: translateY(100%);
transition: transform 0.4s ease;
}

.carta-image-wrapper:hover .carta-overlay {
transform: translateY(0);
}

.carta-overlay p {
color: var(--gold-primary);
font-size: 1.2rem;
font-weight: 600;
margin: 0;
text-transform: uppercase;
letter-spacing: 0.1em;
}

.carta-info {
background: linear-gradient(135deg, var(--charcoal), var(--black));
padding: 50px;
border-radius: 15px;
border: 2px solid var(--gold-primary);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.carta-info h3 {
font-family: 'Bebas Neue', sans-serif;
font-size: 2rem;
color: var(--gold-primary);
margin-bottom: 30px;
letter-spacing: 0.05em;
}

.carta-highlights {
list-style: none;
padding: 0;
margin: 0 0 30px 0;
}

.carta-highlights li {
color: var(--white);
font-size: 1.1rem;
line-height: 2;
padding: 10px 0;
border-bottom: 1px solid rgba(212, 175, 55, 0.2);
transition: all 0.3s ease;
}

.carta-highlights li:hover {
padding-left: 10px;
color: var(--gold-light);
border-color: var(--gold-primary);
}

.carta-note {
background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
color: var(--black);
padding: 20px;
border-radius: 10px;
text-align: center;
font-size: 1.2rem;
font-weight: 600;
margin-top: 30px;
box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

@media (max-width: 1024px) {
.carta-container {
grid-template-columns: 1fr;
gap: 40px;
}

.carta-info {
padding: 40px;
}
}

@media (max-width: 768px) {
.carta-info {
padding: 30px;
}

.carta-info h3 {
font-size: 1.6rem;
}

.carta-highlights li {
font-size: 1rem;
}

.carta-note {
font-size: 1rem;
padding: 15px;
}
}

/* Price Hook Section */
.price-hook {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.price-hook::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      radial-gradient(circle at 20% 50%, rgba(244, 228, 193, 0.2) 0%, transparent 50%),
      radial-gradient(circle at 80% 50%, rgba(244, 228, 193, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.price-hook-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background: rgba(26, 26, 26, 0.3);
  padding: 60px 40px;
  border-radius: 20px;
  border: 3px solid var(--gold-light);
  box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.3),
      0 0 100px rgba(244, 228, 193, 0.2),
      inset 0 0 80px rgba(244, 228, 193, 0.1);
}

.price-hook-label {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  letter-spacing: 0.3em;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.price-hook-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 15vw, 12rem);
  color: var(--black);
  line-height: 0.9;
  margin: 20px 0;
  text-shadow: 
      0 0 40px rgba(244, 228, 193, 0.8),
      0 0 80px rgba(244, 228, 193, 0.4),
      5px 5px 0 rgba(26, 26, 26, 0.3);
  letter-spacing: -0.02em;
}

.price-hook-description {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--black);
  margin-bottom: 40px;
  font-weight: 500;
}

.price-hook-details {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.detail-item {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--black);
  font-weight: 600;
  padding: 12px 25px;
  background: rgba(26, 26, 26, 0.2);
  border-radius: 30px;
  border: 2px solid rgba(26, 26, 26, 0.3);
}

.price-cta {
  margin-top: 20px;
  background: var(--black);
  color: var(--gold-light);
  border-color: var(--black);
  font-size: 1.2rem;
  padding: 20px 60px;
}

.price-cta::before {
  background: var(--charcoal);
}

.price-cta:hover {
  color: var(--gold-light);
  border-color: var(--charcoal);
}

.price-sparkles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  font-size: 2rem;
  opacity: 0.6;
  animation: sparkle-float 3s ease-in-out infinite;
}

.sparkle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.5s; }
.sparkle:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 1s; }
.sparkle:nth-child(4) { bottom: 15%; right: 10%; animation-delay: 1.5s; }
.sparkle:nth-child(5) { top: 50%; left: 5%; animation-delay: 2s; }
.sparkle:nth-child(6) { top: 50%; right: 5%; animation-delay: 2.5s; }

@keyframes sparkle-float {
  0%, 100% {
      transform: translateY(0) scale(1);
      opacity: 0.6;
  }
  50% {
      transform: translateY(-20px) scale(1.2);
      opacity: 1;
  }
}

@media (max-width: 768px) {
  .price-hook-container {
      padding: 40px 20px;
  }

  .price-hook-details {
      gap: 15px;
  }

  .detail-item {
      font-size: 0.9rem;
      padding: 10px 20px;
  }
}

/* Ratings Platforms Section */
.ratings-platforms {
background: var(--black);
padding: 100px 20px;
}

.platforms-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
max-width: 1400px;
margin: 60px auto 0;
}

@media (min-width: 1024px) {
.platforms-grid {
grid-template-columns: repeat(3, 1fr);
}
}

@media (min-width: 768px) and (max-width: 1023px) {
.platforms-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 767px) {
.platforms-grid {
grid-template-columns: 1fr;
}
}

.platform-card {
  background: linear-gradient(135deg, var(--grey) 0%, rgba(42, 42, 42, 0.8) 100%);
  padding: 50px 40px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-primary));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.platform-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 50px rgba(196, 30, 58, 0.4);
}

.platform-card.highlight {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--gold-primary) 100%);
  border-color: var(--gold-primary);
}

.platform-card.highlight:hover {
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
}

.platform-header {
  margin-bottom: 30px;
}

.platform-logo {
  margin: 0 auto 20px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 10px;
  transition: transform 0.4s ease;
}

.platform-card:hover .platform-logo {
  transform: scale(1.1) rotate(5deg);
}

.platform-logo.trust-badge {
  background: linear-gradient(135deg, var(--gold-primary), #FFD700);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.platform-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin: 0;
}

.rating-display {
  margin: 30px 0;
}

.rating-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--gold-primary);
  display: block;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  line-height: 1;
}

.stars-display {
  color: var(--gold-primary);
  font-size: 1.5rem;
  margin-top: 10px;
  letter-spacing: 3px;
}

.reviews-count {
  color: var(--white);
  font-size: 1.1rem;
  margin: 20px 0 30px;
  opacity: 0.9;
}

.view-reviews-btn {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: var(--gold-primary);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--gold-primary);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.view-reviews-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.view-reviews-btn:hover::before {
  left: 0;
}

.view-reviews-btn:hover {
  color: var(--black);
  transform: scale(1.05);
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.mini-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Delivery Services Section */
.delivery-services {
background: var(--charcoal);
padding: 100px 20px;
position: relative;
overflow: hidden;
}

.delivery-services::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
  radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
  radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
pointer-events: none;
}

.delivery-subtitle {
text-align: center;
color: var(--gold-light);
font-size: 1.2rem;
max-width: 700px;
margin: 20px auto 60px;
opacity: 0.9;
}

.delivery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 40px;
max-width: 1200px;
margin: 0 auto;
position: relative;
z-index: 1;
}

@media (min-width: 768px) {
.delivery-grid {
grid-template-columns: repeat(3, 1fr);
}
}

.delivery-card {
background: linear-gradient(135deg, var(--grey), var(--black));
padding: 40px 30px;
border: 2px solid rgba(212, 175, 55, 0.3);
border-radius: 15px;
text-align: center;
text-decoration: none;
color: var(--white);
transition: all 0.4s ease;
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
cursor: pointer;
}

.delivery-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
opacity: 0;
transition: opacity 0.4s ease;
}

.delivery-card:hover::before {
opacity: 1;
}

.delivery-card:hover {
transform: translateY(-15px);
border-color: var(--gold-primary);
box-shadow: 
  0 20px 50px rgba(0, 0, 0, 0.5),
  0 0 40px rgba(212, 175, 55, 0.3);
}

.delivery-icon {
width: 140px;
height: 140px;
margin: 0 auto 25px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 25px;
transition: transform 0.4s ease;
background: var(--black);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.delivery-card:hover .delivery-icon {
transform: scale(1.15) rotate(5deg);
}

.delivery-icon svg {
width: 120px;
height: 120px;
filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.delivery-card h3 {
font-family: 'Bebas Neue', sans-serif;
font-size: 2rem;
color: var(--gold-primary);
margin-bottom: 15px;
letter-spacing: 0.05em;
}

.delivery-time {
color: var(--gold-light);
font-size: 1.1rem;
margin: 10px 0;
font-weight: 500;
}

.delivery-info {
color: rgba(255, 255, 255, 0.7);
font-size: 0.95rem;
margin: 10px 0 20px;
min-height: 40px;
}

.delivery-cta {
display: inline-block;
background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
color: var(--black);
padding: 12px 30px;
border-radius: 25px;
font-weight: 600;
font-size: 1rem;
margin-top: auto;
transition: all 0.3s ease;
box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.delivery-card:hover .delivery-cta {
background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
transform: scale(1.05);
box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

@media (max-width: 767px) {
.delivery-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.delivery-card {
padding: 35px 25px;
}
}

/* Why Choose Us */
.why-us {
  background: var(--grey);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-top: 60px;
}

.feature {
  text-align: center;
  padding: 30px;
  position: relative;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-primary));
  transition: width 0.5s ease;
}

.feature:hover::before {
  width: 80%;
}

.feature-icon {
  font-size: 5rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(196, 30, 58, 0.6));
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
}

.feature-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.2; }
}

.feature:hover .feature-icon {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 25px rgba(196, 30, 58, 0.9));
}

.feature h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 15px;
}

.feature p {
  color: var(--white);
  opacity: 0.9;
}

/* Testimonials Carousel - MEJORADO */
.testimonials {
    background: var(--black);
    padding: 100px 20px;
    overflow: hidden;
}

.testimonials-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 80px;
}

.testimonials-carousel {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--grey), rgba(42, 42, 42, 0.5));
    padding: 40px;
    border-left: 4px solid var(--gold-primary);
    position: relative;
    width: calc(33.333% - 20px);
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: var(--gold-primary);
    opacity: 0.2;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(196, 30, 58, 0.3);
    border-left-color: var(--gold-light);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
    color: var(--white);
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid var(--gold-primary);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    font-family: 'Oswald', sans-serif;
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin: 0 0 5px 0;
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
    color: var(--white);
}

.stars {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-top: 15px;
}

/* Navigation Buttons */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold-primary);
    color: var(--black);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    font-weight: bold;
    line-height: 1;
}

.testimonial-nav:hover {
    background: var(--gold-light);
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonial-nav.prev {
    left: 0;
}

.testimonial-nav.next {
    right: 0;
}

/* Dots Indicators */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-dot:hover {
    background: rgba(212, 175, 55, 0.6);
}

.testimonial-dot.active {
    background: var(--gold-primary);
    transform: scale(1.3);
    border-color: var(--gold-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonial-card {
        width: calc(50% - 15px);
    }
    
    .testimonials-wrapper {
        padding: 0 70px;
    }
}

@media (max-width: 768px) {
    .testimonials-wrapper {
        padding: 0 60px;
    }
    
    .testimonial-card {
        width: 100%;
        padding: 35px 30px;
    }
    
    .testimonial-nav {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-wrapper {
        padding: 0 50px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-nav {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .testimonial-dots {
        gap: 10px;
        margin-top: 40px;
    }
    
    .testimonial-dot {
        width: 12px;
        height: 12px;
    }
}

/* Location Section */
.location {
    background: var(--black);
    text-align: center;
    padding: 100px 20px;
}

.location-wrapper {
    max-width: 1400px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}

.location-info-side {
    background: var(--grey);
    padding: 50px 40px;
    border: 2px solid var(--gold-primary);
    border-radius: 15px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: 100%;
}

.location-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.location-info p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
    color: var(--white);
}

.location-info-side .cta-button {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.map-container {
    width: 100%;
    height: 600px;
    border: 3px solid var(--gold-primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.map-container iframe {
    display: block;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

@media (max-width: 1024px) {
    .location-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-info-side {
        text-align: center;
    }
    
    .map-container {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .map-container {
        height: 350px;
    }
    
    .location-info-side {
        padding: 40px 30px;
    }
}

/* Footer */
footer {
  background: var(--charcoal);
  padding: 60px 20px 30px;
  text-align: center;
  border-top: 3px solid var(--gold-primary);
}

.footer-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
}

.social-icons a {
  font-size: 2rem;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--gold-primary);
  transform: scale(1.2) rotate(5deg);
}

.copyright {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .about {
      grid-template-columns: 1fr;
  }

  .about-image {
      height: 300px;
  }

  section {
      padding: 60px 20px;
  }

  .menu-grid,
  .features-grid {
      gap: 30px;
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-indicator span {
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid var(--gold-primary);
  border-radius: 25px;
  position: relative;
}

.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
      top: 10px;
      opacity: 1;
  }
  100% {
      top: 30px;
      opacity: 0;
  }
}

/* Modal de Carta */
.carta-modal {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 10000;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}

.carta-modal-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.95);
backdrop-filter: blur(10px);
cursor: pointer;
}

.carta-modal-content {
position: relative;
max-width: 95vw;
max-height: 95vh;
z-index: 1;
}

.carta-modal-image {
max-width: 100%;
max-height: 95vh;
width: auto;
height: auto;
display: block;
border: 4px solid var(--gold-primary);
border-radius: 10px;
box-shadow: 0 0 100px rgba(212, 175, 55, 0.5);
}

.carta-modal-close {
position: absolute;
top: -50px;
right: 0;
background: var(--gold-primary);
color: var(--black);
border: none;
width: 50px;
height: 50px;
border-radius: 50%;
font-size: 2rem;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
font-weight: bold;
box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
z-index: 2;
}

.carta-modal-close:hover {
background: var(--gold-light);
transform: rotate(90deg) scale(1.1);
box-shadow: 0 5px 30px rgba(212, 175, 55, 0.8);
}

@media (max-width: 768px) {
.carta-modal-close {
top: -40px;
width: 40px;
height: 40px;
font-size: 1.5rem;
}

.carta-modal-image {
max-height: 90vh;
}
}
