/* @import url("https://drive.google.com/uc?id=1FFGct-H9pfYLbZMEEliYXfzgfiBOXalc"); */
/* @import url(./framework/global.css); */
@import url(./jonna-framework-0.8.css);
/* @import url('https://fonts.googleapis.com/css2?family=Spartan:wght@900&display=swap'); */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #ed3b43;
  --secondary: #ffe119;
  --font-family-title: 'Spartan', sans-serif;
  --border-radius: 9px;
  --border-r-buttom:18px;
  --header-color: #2d2d43;
  --text-primary: #2d2d43;
}

body a, button, .btn {
  cursor: pointer !important;
  font-family: var(--font-family-title);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /*     color: var(--heading-color); */
  /*     letter-spacing: -1px; */
  font-family: 'Spartan';
}

p {
  font-family: 'sans-serif';
}

h3.title-big {
  font-size: 35px;
  font-weight: 600;
  line-height: 42px;
  margin-bottom: 20px;
}

h6.sub-title {
  font-size: 16px;
  color: #999;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ========== MEJORAS DINÁMICAS ========== */

/* Animaciones de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Aplicar animaciones a secciones */
.banner {
  animation: fadeInUp 0.8s ease-out;
}

.banner .col-6:first-child {
  animation: slideInLeft 1s ease-out;
}

.banner .col-6:last-child {
  animation: slideInRight 1s ease-out;
}

/* ========== CARDS DEL MENÚ - EFECTOS DINÁMICOS ========== */
.cards-item {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(0);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 15px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
  border: 1px solid rgba(237, 59, 67, 0.1);
}

.cards-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 225, 25, 0.2), transparent);
  transition: left 0.6s;
  z-index: 1;
}

.cards-item:hover::before {
  left: 100%;
}

.cards-item::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(237, 59, 67, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cards-item:hover::after {
  opacity: 1;
}

.cards-item:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px rgba(237, 59, 67, 0.35),
              0 0 0 3px rgba(255, 225, 25, 0.2);
  z-index: 10;
  border-color: var(--primary);
}

.cards-item .card-header {
  overflow: hidden;
  position: relative;
}

.cards-item .card-header img {
  transition: transform 0.6s ease, filter 0.3s ease;
  filter: brightness(0.95);
}

.cards-item:hover .card-header img {
  transform: scale(1.15) rotate(2deg);
  filter: brightness(1.1);
}

.cards-item .card-content {
  position: relative;
  z-index: 2;
}

.cards-item .card-title {
  transition: color 0.3s ease, transform 0.3s ease;
}

.cards-item:hover .card-title {
  color: var(--primary);
  transform: translateX(5px);
}

.cards-item .card-text {
  transition: color 0.3s ease;
}

.cards-item:hover .card-text {
  color: #555;
}

/* Efecto en el precio */
.cards-price {
  position: relative;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cards-price span {
  font-size: 1.3em;
  font-weight: 700;
  color: var(--primary);
  transition: all 0.3s ease;
  display: inline-block;
}

.cards-item:hover .cards-price span {
  transform: scale(1.15);
  text-shadow: 0 2px 8px rgba(237, 59, 67, 0.3);
}

/* Botones mejorados */
.cards-item .card-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border-radius: var(--border-r-buttom);
}

.cards-item .card-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cards-item .card-btn:hover::before {
  width: 300px;
  height: 300px;
}

.cards-item .card-btn a {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.cards-item .card-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(237, 59, 67, 0.4);
}

/* ========== OWL CAROUSEL CARDS - EFECTOS DINÁMICOS ========== */
.owl-cards-item {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.owl-cards-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.owl-cards-price {
  font-size: 1.6em;
  font-weight: 800;
  color: var(--primary);
  margin: 10px 0;
  transition: color 0.3s ease;
}

.owl-cards-item:hover .owl-cards-price {
  color: var(--primary);
}

.owl-cards-title {
  transition: color 0.3s ease;
}

.owl-cards-item:hover .owl-cards-title {
  color: var(--primary);
}

.owl-cards-content {
  position: relative;
}

.owl-cards-image {
  overflow: hidden;
  position: relative;
}

.owl-cards-image img {
  display: block;
  border-radius: var(--border-radius);
  transition: transform 0.4s ease;
}

.owl-cards-item:hover .owl-cards-image img {
  transform: scale(1.05);
}

/* ========== BANNER MEJORADO ========== */
.banner {
  position: relative;
  background: linear-gradient(135deg, #ff3d00 0%, #ff6b35 25%, #ff8d5c 50%, #ff6b35 75%, #ff3d00 100%);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 152, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

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

.banner .container-full {
  position: relative;
  z-index: 2;
}

.banner h5 {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #2d2d43;
  padding: 10px 24px;
  border-radius: 30px;
  display: inline-block;
  animation: pulse 2s infinite;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.banner h1 {
  color: #ffffff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6),
               0 0 40px rgba(255, 215, 0, 0.4),
               -2px -2px 4px rgba(255, 152, 0, 0.2);
  transition: all 0.3s ease;
  margin: 25px 0;
  line-height: 1.2;
}

.banner h1:hover {
  transform: scale(1.02);
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7),
               0 0 50px rgba(255, 215, 0, 0.6),
               -2px -2px 6px rgba(255, 152, 0, 0.3);
}

.banner img {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  transition: all 0.5s ease;
  animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

.banner img:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 25px 50px rgba(255, 225, 25, 0.4));
}

.btn-banner {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  background: linear-gradient(135deg, #2d2d43 0%, #1a1a2e 100%);
  color: #ffd700;
  box-shadow: 0 6px 20px rgba(45, 45, 67, 0.6),
              0 0 20px rgba(255, 215, 0, 0.3);
  font-weight: 800;
  font-size: 1.1em;
  padding: 14px 40px;
  letter-spacing: 1.5px;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.btn-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
  transition: left 0.5s;
}

.btn-banner:hover::before {
  left: 100%;
}

.btn-banner::after {
  content: '→';
  position: absolute;
  right: 20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #ffd700;
}

.btn-banner:hover::after {
  opacity: 1;
  right: 15px;
}

.btn-banner:hover {
  transform: translateY(-3px) scale(1.08);
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
  box-shadow: 0 12px 35px rgba(45, 45, 67, 0.7),
              0 0 30px rgba(255, 215, 0, 0.5);
  border-color: rgba(255, 215, 0, 0.6);
  padding-right: 50px;
}

/* ========== SECCIÓN COMBOS NUEVOS ========== */
.combos-nuevos {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  padding: 5rem 0 !important;
}

/* ========== SECCIÓN MENÚ ========== */
#menu {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(180deg, #FFF5EE 0%, #FFF8F2 50%, #FFF5EE 100%);
}

#menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--primary), transparent);
}

#menu .cards {
  margin-top: 3rem;
}

/* ========== TÍTULO DE SECCIÓN MEJORADO ========== */
.title {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
  font-size: 2.5em;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.title::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -20px;
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}

.title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
  border-radius: 3px;
  animation: scaleIn 0.6s ease-out 0.3s both;
  box-shadow: 0 2px 10px rgba(237, 59, 67, 0.4);
}

.combos-nuevos .title,
#menu .title {
  margin-bottom: 2rem;
}

/* ========== SECCIÓN DE CONTACTO MEJORADA ========== */
#contact {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d43 50%, #1a1a2e 100%);
}

#contact::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(237, 59, 67, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

#contact::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 225, 25, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

#contact .container {
  position: relative;
  z-index: 2;
}

#contact .title {
  color: white;
}

#contact .title::after {
  background: linear-gradient(90deg, var(--secondary), var(--primary), var(--secondary));
}

.contact-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-top: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-top: 3rem;
}

/* ========== INFORMACIÓN DE CONTACTO ========== */
.contact-info-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.contact-info-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.contact-info-header i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  display: block;
}

.contact-info-header h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-info-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--secondary);
  transform: translateX(5px);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), #c72c33);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-item:hover .info-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(237, 59, 67, 0.4);
}

.info-icon i {
  color: white;
  font-size: 1.3rem;
}

.info-content h4 {
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-content p,
.info-content a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: var(--secondary);
}

/* ========== REDES SOCIALES ========== */
.social-media-section {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-media-section h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.social-icon.facebook::before {
  background: #1877F2;
}

.social-icon.instagram::before {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
}

.social-icon.whatsapp::before {
  background: #25D366;
}

.social-icon.twitter::before {
  background: #1DA1F2;
}

.social-icon i {
  position: relative;
  z-index: 1;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-icon:hover::before {
  opacity: 1;
}

/* ========== FORMULARIO DE CONTACTO ========== */
.contact-form-section {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e5e7eb;
}

.contact-form-header i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.contact-form-header h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-contact.full-width {
  grid-column: 1 / -1;
}

.form-group-contact label {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group-contact label i {
  color: var(--primary);
  font-size: 1rem;
}

.form-group-contact input,
.form-group-contact select,
.form-group-contact textarea {
  padding: 0.9rem 1.2rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'Spartan', sans-serif;
  transition: all 0.3s ease;
  background: white;
  color: var(--text-primary);
}

.form-group-contact input:focus,
.form-group-contact select:focus,
.form-group-contact textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(237, 59, 67, 0.1);
}

.form-group-contact textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group-contact.focused label {
  color: var(--primary);
}

.form-group-contact.focused label i {
  transform: scale(1.1);
}

.btn-contact-submit {
  background: linear-gradient(135deg, var(--primary), #c72c33);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(237, 59, 67, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}

.btn-contact-submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-contact-submit:hover::before {
  width: 300px;
  height: 300px;
}

.btn-contact-submit i,
.btn-contact-submit span {
  position: relative;
  z-index: 1;
}

.btn-contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(237, 59, 67, 0.5);
}

.btn-contact-submit:active {
  transform: translateY(-1px);
}

/* ========== MENSAJE DE ÉXITO ========== */
.form-success-message {
  background: linear-gradient(135deg, #0D9488, #14B8A6);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 1.5rem;
  animation: scaleIn 0.5s ease-out both;
}

.form-success-message i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.form-success-message p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

/* ========== RESPONSIVE PARA CONTACTO ========== */
@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  #contact {
    padding: 3rem 0;
  }

  .contact-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .contact-info-section,
  .contact-form-section {
    padding: 2rem 1.5rem;
  }

  .form-row-contact {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .contact-info-item:hover {
    transform: translateY(-5px);
  }

  .social-icons {
    gap: 0.8rem;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .btn-contact-submit {
    width: 100%;
    padding: 0.9rem 2rem;
  }
}

@media (max-width: 480px) {
  .contact-info-header h3,
  .contact-form-header h3 {
    font-size: 1.2rem;
  }

  .contact-info-header i,
  .contact-form-header i {
    font-size: 2rem;
  }

  .form-group-contact input,
  .form-group-contact select,
  .form-group-contact textarea {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .btn-contact-submit {
    font-size: 0.9rem;
  }
}

/* ========== RESPONSIVE ANIMATIONS ========== */
@media (max-width: 768px) {
  .cards-item:hover {
    transform: translateY(-10px) scale(1.02);
  }

  .owl-cards-item:hover {
    transform: translateY(-3px);
  }
}

/* ========== SMOOTH SCROLL ========== */
html {
  scroll-behavior: smooth;
}

/* ========== LOADING ANIMATION ========== */
.cards-item {
  animation: scaleIn 0.6s ease-out both;
}

.cards-item:nth-child(1) { animation-delay: 0.1s; }
.cards-item:nth-child(2) { animation-delay: 0.2s; }
.cards-item:nth-child(3) { animation-delay: 0.3s; }
.cards-item:nth-child(4) { animation-delay: 0.4s; }
.cards-item:nth-child(5) { animation-delay: 0.5s; }
.cards-item:nth-child(6) { animation-delay: 0.6s; }
.cards-item:nth-child(7) { animation-delay: 0.7s; }

/* ========== EFECTOS GLOBALES MEJORADOS ========== */
body {
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

section {
  position: relative;
}

/* Separadores de sección decorativos */
section:not(.banner)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: 2px;
}

/* ========== MEJORAS EN IMÁGENES ========== */
.cards-item .card-header img,
.owl-cards-image img {
  will-change: transform;
}

.card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cards-item:hover .card-header::after {
  opacity: 1;
}

/* ========== EFECTOS DE TEXTO MEJORADOS ========== */
.cards-item .card-title {
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.cards-item:hover .card-title {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.owl-cards-title {
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.owl-cards-item:hover .owl-cards-title {
  color: var(--primary);
}

/* ========== EFECTOS DE PARTÍCULAS DECORATIVAS ========== */
@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.6;
  }
}

/* ========== MEJORAS EN BOTONES GLOBALES ========== */
.btn {
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn:active {
  transform: scale(0.95);
}

/* ========== SCROLL INDICATOR (Opcional) ========== */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* ========== MEJORAS RESPONSIVE ========== */
@media (max-width: 768px) {
  .title {
    font-size: 1.8em;
  }

  .banner {
    padding-top: 2rem;
    min-height: 450px;
  }

  .banner .col-6:first-child {
    padding-top: 1.5rem;
  }

  .banner h5 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9em;
    padding: 8px 18px;
  }

  .banner h1 {
    font-size: 2rem;
    margin: 20px 0;
  }

  .btn-banner {
    font-size: 1em;
    padding: 12px 30px;
  }

  .owl-cards-item:hover {
    transform: scale(1.05) translateY(-8px);
  }

  .cards-item {
    margin-bottom: 2rem;
  }
}

/* ========== PANTALLAS GRANDES (1200px+) ========== */
@media (min-width: 1200px) {
  .container-full {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .banner {
    min-height: 550px;
  }

  .banner h1 {
    font-size: 3.5rem;
  }

  .banner h5 {
    font-size: 1.1em;
  }

  .title {
    font-size: 3em;
  }

}

/* ========== PANTALLAS EXTRA GRANDES (1400px+) ========== */
@media (min-width: 1400px) {
  .container-full {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .banner {
    min-height: 600px;
  }

  .banner h1 {
    font-size: 4rem;
  }

  .banner h5 {
    font-size: 1.2em;
    padding: 10px 25px;
  }

  .btn-banner {
    font-size: 1.2em;
    padding: 15px 40px;
  }

  .title {
    font-size: 3.2em;
    letter-spacing: 4px;
  }

  .title::after {
    width: 130px;
    height: 6px;
  }

  .cards-item .card-content .card-title {
    font-size: 1.4rem;
  }

  .cards-item .card-content .card-text {
    font-size: 1rem;
  }

  .cards-price span {
    font-size: 1.5em;
  }

  .owl-cards-price {
    font-size: 1.8em;
  }

  .owl-cards-title {
    font-size: 1.3em;
  }

}

/* ========== PANTALLAS ULTRA ANCHAS (1600px+) ========== */
@media (min-width: 1600px) {
  .container-full {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .banner {
    min-height: 650px;
  }

  .banner h1 {
    font-size: 4.5rem;
  }

  .combos-nuevos,
  #menu {
    padding: 6rem 0 !important;
  }
}

/* ========== OPTIMIZACIÓN DE RENDIMIENTO ========== */
.cards-item,
.owl-cards-item,
.banner img,
.card-header img {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

/* ========== CURSOR PERSONALIZADO PARA ELEMENTOS INTERACTIVOS ========== */
.cards-item,
.owl-cards-item,
.btn,
.card-btn {
  cursor: pointer;
}

.cards-item:hover .card-header,
.owl-cards-item:hover .owl-cards-image {
  cursor: pointer;
}

/* ========== SECCIÓN: SOBRE NOSOTROS ========== */
#sobre-nosotros {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

#sobre-nosotros::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--primary), transparent);
}

.sobre-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.sobre-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out both;
}

.sobre-item:nth-child(1) { animation-delay: 0.1s; }
.sobre-item:nth-child(2) { animation-delay: 0.2s; }
.sobre-item:nth-child(3) { animation-delay: 0.3s; }
.sobre-item:nth-child(4) { animation-delay: 0.4s; }

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

.sobre-item:hover::before {
  transform: scaleX(1);
}

.sobre-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(237, 59, 67, 0.2);
}

.sobre-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), #c72c33);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
}

.sobre-icon::before {
  content: '';
  position: absolute;
  inset: -5px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sobre-item:hover .sobre-icon::before {
  opacity: 0.3;
}

.sobre-icon i {
  font-size: 2rem;
  color: white;
  transition: transform 0.4s ease;
}

.sobre-item:hover .sobre-icon {
  transform: scale(1.1) rotate(10deg);
}

.sobre-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.sobre-item:hover h3 {
  color: var(--primary);
}

.sobre-item p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ========== SECCIÓN: TESTIMONIOS ========== */
#testimonios {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

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

.testimonio-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.4s ease;
  animation: scaleIn 0.6s ease-out both;
  border: 2px solid transparent;
}

.testimonio-card:nth-child(1) { animation-delay: 0.1s; }
.testimonio-card:nth-child(2) { animation-delay: 0.2s; }
.testimonio-card:nth-child(3) { animation-delay: 0.3s; }

.testimonio-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  color: var(--secondary);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(237, 59, 67, 0.15);
  border-color: var(--secondary);
}

.testimonio-stars {
  margin-bottom: 1rem;
}

.testimonio-stars i {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-right: 5px;
  animation: pulse 2s infinite;
}

.testimonio-stars i:nth-child(1) { animation-delay: 0.1s; }
.testimonio-stars i:nth-child(2) { animation-delay: 0.2s; }
.testimonio-stars i:nth-child(3) { animation-delay: 0.3s; }
.testimonio-stars i:nth-child(4) { animation-delay: 0.4s; }
.testimonio-stars i:nth-child(5) { animation-delay: 0.5s; }

.testimonio-text {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
}

.testimonio-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #f0f0f0;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.testimonio-card:hover .author-avatar {
  transform: scale(1.1);
}

.author-avatar i {
  color: white;
  font-size: 1.5rem;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.author-info span {
  font-size: 0.85rem;
  color: #999;
}

/* ========== SECCIÓN: COMBOS Y PROMOCIONES ========== */
#combos-promociones {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2d2d43 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

#combos-promociones::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(237, 59, 67, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

#combos-promociones .title {
  color: white;
}

#combos-promociones .title::after {
  background: linear-gradient(90deg, var(--secondary), var(--primary), var(--secondary));
}

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

.combo-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.6s ease-out both;
}

.combo-card:nth-child(1) { animation-delay: 0.1s; }
.combo-card:nth-child(2) { animation-delay: 0.2s; }
.combo-card:nth-child(3) { animation-delay: 0.3s; }

.combo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(237, 59, 67, 0.05), rgba(255, 225, 25, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.combo-card.featured {
  border: 3px solid var(--secondary);
  transform: scale(1.05);
}

.combo-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 50px rgba(237, 59, 67, 0.4);
}

.combo-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 2;
}

.combo-badge.special {
  background: linear-gradient(135deg, var(--secondary), #ffaa00);
  color: var(--text-primary);
  animation: pulse 2s infinite;
}

.combo-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), #c72c33);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
}

.combo-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.2;
}

.combo-icon i {
  font-size: 2.5rem;
  color: white;
}

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

.combo-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.combo-items {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.combo-items li {
  padding: 0.8rem 0;
  color: #555;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.combo-items li:last-child {
  border-bottom: none;
}

.combo-items i {
  color: var(--primary);
  font-size: 1rem;
}

.combo-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.precio-antes {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
}

.precio-ahora {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  text-shadow: 0 2px 10px rgba(237, 59, 67, 0.3);
}

.btn-combo {
  background: linear-gradient(135deg, var(--primary), #c72c33);
  color: white;
  padding: 12px 30px;
  border-radius: var(--border-r-buttom);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-combo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-combo:hover::before {
  width: 300px;
  height: 300px;
}

.btn-combo:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(237, 59, 67, 0.5);
}

/* ========== SECCIÓN: PERSONALIZA TU PIZZA ========== */
#personaliza-pizza {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.subtitle-center {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

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

.personaliza-step {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease-out both;
}

.personaliza-step:nth-child(1) { animation-delay: 0.1s; }
.personaliza-step:nth-child(2) { animation-delay: 0.2s; }
.personaliza-step:nth-child(3) { animation-delay: 0.3s; }

.personaliza-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(237, 59, 67, 0.15);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(237, 59, 67, 0.3);
}

.step-icon {
  width: 70px;
  height: 70px;
  margin: 1rem auto;
  background: linear-gradient(135deg, var(--primary), #c72c33);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.step-icon i {
  font-size: 2rem;
  color: white;
}

.personaliza-step:hover .step-icon {
  transform: scale(1.1) rotate(10deg);
}

.personaliza-step h3 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 1.5rem 0;
}

.size-options,
.masa-options {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  margin-top: 1.5rem;
}

.size-option,
.masa-option {
  flex: 1;
  text-align: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.size-option:hover,
.masa-option:hover {
  background: linear-gradient(135deg, rgba(237, 59, 67, 0.1), rgba(255, 225, 25, 0.1));
  border-color: var(--primary);
  transform: translateY(-5px);
}

.size-option i,
.masa-option i {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.size-option span,
.masa-option span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.ingredientes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.ingrediente-item {
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.ingrediente-item:hover {
  background: linear-gradient(135deg, rgba(237, 59, 67, 0.1), rgba(255, 225, 25, 0.1));
  border-color: var(--primary);
  transform: translateX(5px);
}

.ingrediente-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

.personaliza-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-personaliza {
  background: linear-gradient(135deg, var(--primary), #c72c33);
  color: white;
  padding: 15px 40px;
  border-radius: var(--border-r-buttom);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(237, 59, 67, 0.3);
}

.btn-personaliza:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(237, 59, 67, 0.5);
}

/* ========== SECCIÓN: HORARIOS Y UBICACIÓN ========== */
#horarios-ubicacion {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

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

.horarios-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  animation: scaleIn 0.6s ease-out both;
  border: 2px solid transparent;
}

.horarios-card:nth-child(1) { animation-delay: 0.1s; }
.horarios-card:nth-child(2) { animation-delay: 0.2s; }
.horarios-card:nth-child(3) { animation-delay: 0.3s; }

.horarios-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(237, 59, 67, 0.15);
  border-color: var(--secondary);
}

.horarios-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), #c72c33);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.horarios-icon i {
  font-size: 2rem;
  color: white;
}

.horarios-card:hover .horarios-icon {
  transform: scale(1.1) rotate(10deg);
}

.horarios-card h3 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.horarios-list {
  margin-top: 1.5rem;
}

.horario-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 2px solid #f0f0f0;
}

.horario-item:last-child {
  border-bottom: none;
}

.horario-item .dia {
  font-weight: 600;
  color: var(--text-primary);
}

.horario-item .hora {
  font-weight: 700;
  color: var(--primary);
}

.ubicacion-info {
  margin-top: 1.5rem;
}

.ubicacion-info p {
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
}

.ubicacion-info p:last-child {
  border-bottom: none;
}

.ubicacion-info i {
  color: var(--primary);
  font-size: 1.2rem;
  width: 20px;
}

.cobertura-badge {
  margin-top: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(237, 59, 67, 0.1), rgba(255, 225, 25, 0.1));
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  color: var(--primary);
}

.cobertura-badge i {
  margin-right: 10px;
}

.delivery-card {
  background: linear-gradient(135deg, var(--primary), #c72c33);
  color: white;
}

.delivery-card h3 {
  color: white;
}

.delivery-card .horarios-icon {
  background: white;
}

.delivery-card .horarios-icon i {
  color: var(--primary);
}

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

.delivery-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0;
}

.time-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.time-text {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.delivery-desc {
  font-size: 1rem;
  margin: 1rem 0;
  opacity: 0.9;
}

.delivery-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.delivery-features span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}

.delivery-features i {
  color: var(--secondary);
}

/* ========== SECCIÓN: FAQ ========== */
#faq {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.faq-container {
  max-width: 900px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  margin-bottom: 1.5rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out both;
  border: 2px solid transparent;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(237, 59, 67, 0.15);
  border-color: var(--secondary);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, transparent, rgba(237, 59, 67, 0.03));
}

.faq-question:hover {
  background: linear-gradient(90deg, rgba(237, 59, 67, 0.05), rgba(255, 225, 25, 0.05));
}

.faq-question i:first-child {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-question h3 {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.faq-question i:last-child {
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i:last-child {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 1rem 2rem 1.5rem;
}

.faq-answer p {
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* ========== SECCIÓN: BEBIDAS Y ACOMPAÑANTES ========== */
#bebidas-acompanantes {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
}

.bebidas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.bebida-category {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  animation: scaleIn 0.6s ease-out both;
}

.bebida-category:nth-child(1) { animation-delay: 0.1s; }
.bebida-category:nth-child(2) { animation-delay: 0.2s; }
.bebida-category:nth-child(3) { animation-delay: 0.3s; }
.bebida-category:nth-child(4) { animation-delay: 0.4s; }

.bebida-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(237, 59, 67, 0.15);
}

.category-header {
  background: linear-gradient(135deg, var(--primary), #c72c33);
  color: white;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.category-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 225, 25, 0.2) 0%, transparent 70%);
}

.category-header i {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.category-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 1;
  color: white;
}

.bebida-items {
  padding: 1.5rem;
}

.bebida-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.bebida-item:last-child {
  border-bottom: none;
}

.bebida-item:hover {
  transform: translateX(5px);
  background: linear-gradient(90deg, rgba(237, 59, 67, 0.05), transparent);
}

.bebida-item i {
  color: var(--primary);
  font-size: 1.3rem;
  width: 30px;
  text-align: center;
}

.bebida-name {
  flex: 1;
  font-weight: 600;
  color: var(--text-primary);
}

.bebida-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

/* ========== RESPONSIVE PARA NUEVAS SECCIONES ========== */
@media (max-width: 768px) {
  .sobre-content,
  .testimonios-grid,
  .combos-grid,
  .personaliza-content,
  .horarios-grid,
  .bebidas-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .subtitle-center {
    font-size: 1rem;
  }

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

  .faq-question h3 {
    font-size: 1rem;
  }

  .time-number {
    font-size: 2.5rem;
  }

  #sobre-nosotros,
  #testimonios,
  #combos-promociones,
  #personaliza-pizza,
  #horarios-ubicacion,
  #faq,
  #bebidas-acompanantes {
    padding: 3rem 0;
  }

  /* Ajustes específicos para Personaliza tu Pizza */
  #personaliza-pizza {
    padding: 3rem 1rem;
  }

  .personaliza-step {
    padding: 2rem 1.5rem;
  }

  .personaliza-step h3 {
    font-size: 1.1rem;
  }

  .size-options,
  .masa-options {
    flex-direction: column;
    gap: 0.8rem;
  }

  .size-option,
  .masa-option {
    padding: 0.8rem;
  }

  .size-option i,
  .masa-option i {
    font-size: 1.2rem;
  }

  .size-option span,
  .masa-option span {
    font-size: 0.85rem;
  }

  .ingredientes-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .ingrediente-item {
    padding: 0.8rem;
    font-size: 0.85rem;
  }

  .ingrediente-item i {
    font-size: 1rem;
  }

  .step-icon {
    width: 60px;
    height: 60px;
  }

  .step-icon i {
    font-size: 1.5rem;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .btn-personaliza {
    padding: 12px 30px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }

  .personaliza-cta {
    padding: 0 1rem;
  }
}

/* ========== RESPONSIVE MÓVILES PEQUEÑOS (480px o menos) ========== */
@media (max-width: 480px) {
  .banner {
    padding-top: 2.5rem;
    min-height: 400px;
  }

  .banner .col-6:first-child {
    padding-top: 2rem;
  }

  .banner h5 {
    margin-top: 1.5rem;
    font-size: 0.8em;
    padding: 7px 16px;
  }

  .banner h1 {
    font-size: 1.6rem;
    margin: 15px 0;
  }

  .btn-banner {
    font-size: 0.95em;
    padding: 11px 28px;
  }

  #personaliza-pizza .title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .subtitle-center {
    font-size: 0.9rem;
    padding: 0 1rem;
  }

  .personaliza-step {
    padding: 1.5rem 1rem;
  }

  .personaliza-step h3 {
    font-size: 1rem;
  }

  .step-icon {
    width: 50px;
    height: 50px;
  }

  .step-icon i {
    font-size: 1.3rem;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    left: 20px;
  }

  .size-option,
  .masa-option {
    padding: 0.7rem;
  }

  .ingrediente-item {
    padding: 0.7rem;
    font-size: 0.8rem;
  }

  .btn-personaliza {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

/* ========== RESPONSIVE TABLETS (769px - 1024px) ========== */
@media (min-width: 769px) and (max-width: 1024px) {
  .personaliza-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .personaliza-step:last-child {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
  }

  .ingredientes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .sobre-content {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonios-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .personaliza-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========== INTERACTIVIDAD PARA FAQ (JavaScript) ========== */
/* Nota: Agregar funcionalidad click con JavaScript en main.js */

/* ========== NUEVO DISEÑO DEL MENÚ (CONVERTIDO DE REACT) ========== */

/* Menu Hero Section */
.menu-hero {
  text-align: center;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.menu-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.2rem;
  border: 1px solid rgba(237, 59, 67, 0.1);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.menu-badge i {
  color: var(--primary);
  font-size: 1rem;
}

.menu-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.menu-subtitle {
  max-width: 650px;
  margin: 1rem auto 0;
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Menu Grid - Actualizado */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

/* Menu Card */
.menu-card {
  position: relative;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.08);
}

/* Menu Badges */
.menu-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  animation: scaleIn 0.5s ease-out both;
}

.badge i {
  font-size: 0.75rem;
}

.badge-popular {
  background: #EF4444;
  color: white;
}

.badge-vegetarian {
  background: #0D9488;
  color: white;
}

.badge-spicy {
  background: #1E3A5F;
  color: white;
}

/* Menu Image Container */
.menu-image-container {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #F9FAFB;
}

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

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

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-card:hover .image-overlay {
  opacity: 1;
}

/* Menu Rating */
.menu-rating {
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.8rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.menu-rating i {
  color: #FFB800;
  font-size: 0.9rem;
}

.menu-rating span {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.85rem;
}

/* Menu Card Content - Actualizado */
.menu-card .card-content {
  padding: 1.5rem 1.5rem 1.3rem;
}

.menu-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #1F2937;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  transition: color 0.3s ease;
}

.menu-card:hover .card-title {
  color: var(--primary);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  transform: none;
}

.menu-card .card-text {
  font-size: 0.85rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Menu Footer */
.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid #E5E7EB;
}

/* Price Container */
.price-container {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.price-label {
  font-size: 0.8rem;
  color: #6B7280;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0;
}

.menu-card .cards-price {
  font-size: 0.9rem;
  color: #374151;
  font-weight: 400;
}

.menu-card .cards-price span {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1F2937;
  transition: all 0.3s ease;
}

.menu-card:hover .cards-price span {
  transform: scale(1.03);
}

/* Price Discount */
.price-discount {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.price-original {
  font-size: 0.8rem;
  color: #9CA3AF;
  text-decoration: line-through;
  font-weight: 400;
}

.price-sale {
  font-size: 0.9rem !important;
  color: #374151 !important;
  font-weight: 400 !important;
}

.price-sale span {
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  color: #1F2937 !important;
}

/* Menu Card Button - Actualizado */
.menu-card .card-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  background: #EF4444;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-card .card-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #DC2626;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-card .card-btn:hover::before {
  opacity: 1;
}

.menu-card .card-btn i,
.menu-card .card-btn span {
  position: relative;
  z-index: 1;
}

.menu-card .card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.menu-card .card-btn a {
  display: none; /* Ocultamos el <a> ya que el botón ahora es <button> */
}

/* Decorative Element */
.menu-card::after {
  content: '';
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, rgba(237, 59, 67, 0.05), rgba(255, 225, 25, 0.05));
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.menu-card:hover::after {
  opacity: 1;
}

/* ========== RESPONSIVE PARA NUEVO MENÚ ========== */
@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .menu-subtitle {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .menu-image-container {
    height: 220px;
  }

  .menu-card .card-title {
    font-size: 1.15rem;
  }

  .menu-card .card-content {
    padding: 1.2rem;
  }

  .menu-footer {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
  }

  .menu-card .card-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}

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

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

@media (min-width: 1400px) {
  .menu-grid {
    gap: 2.2rem;
  }

  .menu-image-container {
    height: 280px;
  }
}

/*# sourceMappingURL=global_local.css.map */