@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', Arial, sans-serif;
}

:root {
  --magic-yellow: #FFD700;
  --magic-red: #E30613;
  --magic-black: #000000;
  --magic-white: #FFFFFF;
  --magic-dark-red: #B30000;
}

body {
  background: var(--magic-white);
  color: var(--magic-black);
  overflow-x: hidden;
}

/* ============================================
   HEADER - Navegación Mejorada
   ============================================ */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--magic-black) 0%, #1a1a1a 100%);
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid var(--magic-yellow);
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  height: 100%;
}

.logo-img {
  height: 55px;
  width: auto;
  transition: transform 0.3s ease;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.logo-img:hover {
  transform: scale(1.05);
}

/* Círculos estilo Mickey Mouse */
.circle {
  border-radius: 50%;
  background: var(--magic-black);
  border: 3px solid var(--magic-white);
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.small {
  width: 18px;
  height: 18px;
}

.big {
  width: 26px;
  height: 26px;
  margin-left: -8px;
  border-color: var(--magic-yellow);
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

/* Navegación con botones ovalados */
nav {
  display: flex;
  gap: 15px;
  align-items: center;
  flex: 1;
  justify-content: center;
  margin: 0 20px;
}

nav a {
  text-decoration: none;
  color: var(--magic-white);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 25px;
  background: linear-gradient(135deg, var(--magic-red) 0%, var(--magic-dark-red) 100%);
  border: 2px solid var(--magic-yellow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

nav a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

nav a:hover::before {
  width: 300px;
  height: 300px;
}

nav a:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--magic-yellow) 0%, #FFA500 100%);
  color: var(--magic-black);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  border-color: var(--magic-white);
}

nav a:active {
  transform: translateY(0);
}

/* User Actions - Iniciar Sesión y Carrito */
.user-actions {
  display: flex;
  gap: 0;
  align-items: stretch;
  height: 100%;
}

#loginBtn {
  background: linear-gradient(135deg, var(--magic-yellow) 0%, #FFA500 100%);
  border: none;
  border-left: 2px solid var(--magic-red);
  border-right: 2px solid var(--magic-red);
  padding: 0 25px;
  border-radius: 0;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--magic-black);
  font-size: 15px;
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loginBtn:hover {
  background: linear-gradient(135deg, var(--magic-white) 0%, var(--magic-yellow) 100%);
  box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.5);
}

#cartBtn {
  background: var(--magic-yellow);
  border: none;
  border-left: 2px solid var(--magic-red);
  padding: 0 25px;
  border-radius: 0;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--magic-black);
  font-size: 18px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

#cartBtn:hover {
  background: var(--magic-white);
  box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.5);
}

/* ============================================
   HERO - Banner con Logo
   ============================================ */
.hero {
  margin-top: 70px;
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(180deg, var(--magic-black) 0%, var(--magic-red) 100%);
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

/* Banner con logo - Rectangular */
.hero-banner {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 30px 60px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B00 100%);
  border-radius: 0;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  border-top: 5px solid var(--magic-red);
  border-bottom: 5px solid var(--magic-red);
  animation: fadeInScale 1s ease;
}

.banner-logo {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

/* Video del banner */
.banner-video {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Contenido del hero */
.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: var(--magic-yellow);
  font-size: 48px;
  font-weight: 800;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  margin-bottom: 15px;
  animation: fadeInDown 1s ease;
}

.hero-content p {
  color: var(--magic-white);
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content button {
  background: linear-gradient(135deg, var(--magic-yellow) 0%, #FFA500 100%);
  border: 3px solid var(--magic-white);
  padding: 15px 40px;
  font-weight: 700;
  font-size: 18px;
  border-radius: 30px;
  cursor: pointer;
  color: var(--magic-black);
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.hero-content button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, var(--magic-white) 0%, var(--magic-yellow) 100%);
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 80px 40px;
  text-align: center;
}

section h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--magic-red);
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  background: linear-gradient(135deg, var(--magic-black) 0%, #2a2a2a 100%);
  padding: 60px 40px;
}

.feature {
  width: 280px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 2px solid var(--magic-yellow);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.feature h3 {
  color: var(--magic-yellow);
  font-size: 24px;
  margin-bottom: 10px;
}

.feature p {
  color: var(--magic-white);
  font-size: 16px;
}

/* ============================================
   MENU - Paneles en Blanco
   ============================================ */
.menu {
  background: var(--magic-white);
}

#categories {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

#categories button {
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--magic-white) 0%, #f5f5f5 100%);
  color: var(--magic-black);
  border: 2px solid var(--magic-yellow);
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-transform: capitalize;
}

#categories button:hover {
  background: linear-gradient(135deg, var(--magic-yellow) 0%, #FFA500 100%);
  color: var(--magic-black);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  border-color: var(--magic-red);
}

#categories button.active {
  background: linear-gradient(135deg, var(--magic-red) 0%, var(--magic-dark-red) 100%);
  color: var(--magic-white);
  border-color: var(--magic-yellow);
  box-shadow: 0 6px 20px rgba(227, 6, 19, 0.4);
}

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

/* Tarjetas de productos - Paneles en blanco */
.card {
  background: var(--magic-white);
  color: var(--magic-black);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 3px solid var(--magic-yellow);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  min-height: 320px;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(227, 6, 19, 0.3);
  border-color: var(--magic-red);
}

/* Área de imagen - Con iconos */
.card .img {
  background: linear-gradient(135deg, #f8f8f8 0%, var(--magic-white) 100%);
  border-bottom: 2px solid #eee;
  font-size: 80px;
  padding: 40px 20px;
  color: var(--magic-black);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.card h3 {
  padding: 15px;
  color: var(--magic-red);
  font-weight: 700;
}

.card p {
  padding: 0 15px 15px;
  color: var(--magic-black);
}

.card button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--magic-red) 0%, var(--magic-dark-red) 100%);
  color: var(--magic-white);
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.card button:hover {
  background: linear-gradient(135deg, var(--magic-yellow) 0%, #FFA500 100%);
  color: var(--magic-black);
}

/* Tarjeta "Ver Menú Completo" */
.view-more-card {
  background: linear-gradient(135deg, var(--magic-yellow) 0%, #FFA500 100%);
  border: 3px solid var(--magic-red);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-more-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 50px rgba(227, 6, 19, 0.5);
  border-color: var(--magic-black);
}

.view-more-content {
  text-align: center;
  padding: 30px;
}

.view-more-content h3 {
  color: var(--magic-black);
  font-size: 28px;
  margin-bottom: 15px;
  padding: 0;
}

.view-more-content p {
  color: var(--magic-black);
  font-size: 16px;
  margin-bottom: 25px;
  padding: 0;
}

.btn-view-more {
  background: linear-gradient(135deg, var(--magic-red) 0%, var(--magic-dark-red) 100%);
  color: var(--magic-white);
  border: 3px solid var(--magic-black);
  padding: 15px 35px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-view-more:hover {
  background: linear-gradient(135deg, var(--magic-black) 0%, #2a2a2a 100%);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ============================================
   ABOUT - Quiénes Somos
   ============================================ */
.about {
  background: linear-gradient(135deg, #f8f8f8 0%, var(--magic-white) 100%);
  padding: 80px 20px;
}

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

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-intro {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1.8;
}

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

.about-card {
  background: var(--magic-white);
  padding: 40px 30px;
  border-radius: 20px;
  border: 3px solid var(--magic-yellow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(227, 6, 19, 0.3);
  border-color: var(--magic-red);
}

.about-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.about-card h3 {
  color: var(--magic-red);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-card p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================
   WHY - Por qué elegirnos
   ============================================ */
.why {
  background: linear-gradient(135deg, var(--magic-red) 0%, var(--magic-dark-red) 100%);
  padding: 80px 20px;
  color: var(--magic-white);
}

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

.why h2 {
  color: var(--magic-white);
  text-align: center;
  margin-bottom: 15px;
}

.why-subtitle {
  text-align: center;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.why-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 35px 25px;
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--magic-yellow);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.why-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.why-card h3 {
  color: var(--magic-yellow);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   LOCATION - Ubicación
   ============================================ */
.location {
  background: linear-gradient(135deg, #f8f8f8 0%, var(--magic-white) 100%);
  padding: 80px 20px;
}

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

.location h2 {
  text-align: center;
  margin-bottom: 15px;
}

.location-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: var(--magic-white);
  padding: 25px;
  border-radius: 15px;
  border: 2px solid var(--magic-yellow);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(227, 6, 19, 0.2);
  border-color: var(--magic-red);
}

.info-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.info-text h3 {
  color: var(--magic-red);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-text p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.location-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  border: 3px solid var(--magic-yellow);
}

/* ============================================
   TESTIMONIALS - Testimonios
   ============================================ */
.testimonials {
  background: linear-gradient(135deg, var(--magic-black) 0%, #2a2a2a 100%);
  padding: 80px 20px;
  color: var(--magic-white);
}

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

.testimonials h2 {
  color: var(--magic-white);
  text-align: center;
  margin-bottom: 15px;
}

.testimonials-subtitle {
  text-align: center;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--magic-yellow);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.testimonial-stars {
  font-size: 24px;
  margin-bottom: 20px;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 25px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.author-avatar {
  font-size: 40px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--magic-yellow) 0%, #FFA500 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-info h4 {
  color: var(--magic-yellow);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.author-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

.cta {
  background: linear-gradient(135deg, var(--magic-yellow) 0%, #FFA500 100%);
  color: var(--magic-black);
}

.cta h2 {
  color: var(--magic-black);
  font-size: 48px;
}

.cta button {
  background: var(--magic-red);
  color: var(--magic-white);
  border: 3px solid var(--magic-black);
  padding: 18px 45px;
  font-weight: 700;
  font-size: 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta button:hover {
  background: var(--magic-black);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--magic-white);
}

.contact p {
  font-size: 22px;
  margin: 15px 0;
  font-weight: 600;
  color: var(--magic-black);
}

/* ============================================
   CART
   ============================================ */
.cart {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--magic-black) 0%, #2a2a2a 100%);
  padding: 25px;
  width: 320px;
  border-radius: 20px;
  border: 3px solid var(--magic-yellow);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  color: var(--magic-white);
}

.cart h3 {
  color: var(--magic-yellow);
  margin-bottom: 15px;
  font-size: 22px;
}

.cart button {
  width: 100%;
  padding: 12px;
  background: var(--magic-yellow);
  color: var(--magic-black);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.cart button:hover {
  background: var(--magic-white);
  transform: scale(1.05);
}

.hidden {
  display: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  animation: fadeIn 1s ease;
}

.slide-up {
  animation: slideUp 1s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .header {
    padding: 0;
    height: 60px;
  }

  nav {
    display: none;
  }

  .user-actions {
    display: none;
  }

  .logo {
    padding: 0 15px;
  }

  .logo-img {
    height: 45px;
  }

  .hero {
    margin-top: 60px;
    min-height: 500px;
    padding: 40px 15px;
  }

  .hero-banner {
    max-width: 100%;
    padding: 20px 30px;
  }

  .banner-logo {
    max-width: 100%;
  }

  .banner-video {
    max-width: 100%;
    border-radius: 10px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-content button {
    padding: 12px 30px;
    font-size: 16px;
  }

  section h2 {
    font-size: 32px;
  }

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

  /* Responsive para About */
  .about-grid {
    grid-template-columns: 1fr;
  }

  /* Responsive para Why */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Responsive para Location */
  .location-content {
    grid-template-columns: 1fr;
  }

  .location-map iframe {
    height: 300px;
  }

  /* Responsive para Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}