/* style.css */
:root {
  /* Nueva paleta de colores basada en la marca LeTaBra */
  --primary-color: #e74c3c; /* Rojo de la marca */
  --primary-color-dark: #c0392b; /* Rojo más oscuro para hovers */
  --secondary-color: #27ae60; /* Verde de la marca */
  --secondary-color-dark: #1e8449; /* Verde más oscuro */
  --background-color: #fdfaf6; /* Crema muy claro, casi blanco */
  --card-background-color: #ffffff; /* Fondo para tarjetas */
  --text-color: #2c3e50; /* Gris oscuro para texto general */
  --light-text-color: #ffffff;
  --accent-color: #2c3e50; /* Negro/gris oscuro para acentos */
  --navbar-background: rgba(33, 37, 41, 0.95); /* Negro oscuro */
  --footer-background: #212529; /* Negro para footer */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --border-radius: 8px; /* Radio de borde estándar */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 10px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.8; /* Ligeramente aumentado para mejor lectura */
  font-size: 16px; /* Base font size */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  color: var(--accent-color);
  font-weight: 700;
  line-height: 1.3;
}

.navbar {
  background-color: var(--navbar-background);
  backdrop-filter: blur(8px); /* Un poco más de blur */
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: padding 0.3s ease-in-out;
}

.navbar-scrolled { /* Clase para JS cuando se hace scroll */
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-family: var(--font-secondary);
  font-size: 2rem; /* Aumentado */
  color: var(--primary-color) !important;
  font-weight: bold;
  transition: font-size 0.3s ease-in-out;
}

.navbar-scrolled .navbar-brand {
    font-size: 1.7rem; /* Ligeramente más pequeño en scroll */
}

.nav-link {
  color: var(--light-text-color) !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, background-color 0.3s ease;
  padding: 0.5rem 1rem !important;
  border-radius: 4px;
}

.nav-link:hover, .nav-link.active {
  color: var(--light-text-color) !important;
  background-color: var(--primary-color) !important;
}

 .hero-section {
            position: relative;
            min-height: 100vh;
            color: white;
            overflow: hidden;
        }  
        .hero-bg-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        /* Mejora de la legibilidad del texto en el hero */
        .hero-section .container {
            position: relative;
            z-index: 2;
        }
        
        .hero-section h1, 
        .hero-section p {
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }
        
        .hero-section h1 {
            font-size: 5rem;
            text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
        }
        
        /* Efecto sutil de gradiente en la parte inferior para mejorar legibilidad */
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 35%;
            background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
            z-index: 1;
            pointer-events: none;
        }
        
        /* Resto de estilos existentes */
        .reservation-success {
            background-color: #f8f9fa;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .highlight-success {
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.25);
            transform: translateY(-5px);
        }
        .success-icon {
            animation: pulse 2s infinite;
        }
        .reservation-details {
            transition: all 0.3s ease;
        }
        .reservation-details:hover {
            background-color: #e9ecef !important;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        #reservationMsg {
            transition: all 0.5s ease;
        }

.btn { /* Estilo base para botones */
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius);
    padding: 0.85rem 1.8rem;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--light-text-color) !important; /* Texto blanco sobre rojo */
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-color-dark);
  border-color: var(--primary-color-dark);
  color: var(--light-text-color) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color);
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary-color);
    color: var(--light-text-color) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem; /* Aumentado */
  font-size: 2.8rem; /* Aumentado */
  position: relative;
  padding-bottom: 1.5rem; /* Aumentado */
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; /* Aumentado */
  height: 4px; /* Aumentado */
  background-color: var(--secondary-color); /* Verde */
  border-radius: 2px;
}

/* Estilos para las tarjetas de categorías del menú */
.menu-category-card {
  background-color: var(--card-background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
}

.menu-category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.menu-category-card img {
  width: 100%;
  height: 220px; /* Altura ajustada para imagen de categoría */
  object-fit: cover;
}

.menu-category-card-content {
  padding: 1.5rem 2rem; /* Más padding */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.menu-category-card-content h5 {
  font-family: var(--font-secondary);
  color: var(--secondary-color); /* Verde */
  font-size: 1.6rem; /* Aumentado */
  margin-bottom: 0.75rem;
}

.menu-category-card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 0;
}


#reservations, #contact, #about, #menu-section, #gallery-section {
  padding: 80px 0; /* Aumentado padding de secciones */
}

#about {
    background-color: #f7f2ec; /* Un fondo ligeramente diferente para la sección "Sobre Nosotros" */
}

#reservations .card {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius);
}

#contact iframe {
  width: 100%;
  height: 450px; /* Aumentado */
  border:0;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.contact-info {
    list-style: none;
    padding-left: 0;
}
.contact-info li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.contact-info i {
    color: var(--secondary-color); /* Verde */
    margin-right: 10px;
    width: 20px; /* Alineación de iconos */
    text-align: center;
}

.social-icons a {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin: 0 0.75rem;
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: var(--primary-color); /* Rojo al hover */
}


/* Estilos mejorados para la galería */
/* .gallery-filter {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 0.5rem;
}

.btn-filter {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--secondary-color);
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}

.btn-filter:hover, .btn-filter.active {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.gallery-container {
  position: relative;
  min-height: 400px;
}

.gallery-item {
  transition: all 0.5s ease;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-img-wrapper {
  position: relative;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.8s ease;
  display: block;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  padding: 20px;
}

.gallery-card:hover .gallery-info {
  transform: translateY(0);
}

.gallery-info h5 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.gallery-popup-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  margin-top: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gallery-popup-link:hover {
  background: white;
  color: var(--primary-color);
  transform: rotate(90deg);
} */

/* Nueva galería simple y funcional */
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  background: #fff;
  margin-bottom: 1rem;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h5 {
  color: var(--secondary-color); /* Verde */
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.gallery-caption p {
  font-size: 0.9rem;
  margin-bottom: 0;
  opacity: 0.9;
}

.gallery-item-featured {
  margin-top: 2rem;
}

.gallery-item-featured img {
  height: 300px;
}

@media (max-width: 768px) {
  .gallery-item img {
    height: 200px;
  }
  
  .gallery-item-featured img {
    height: 220px;
  }
  
  .gallery-caption {
    padding: 1.5rem 1rem 1rem;
  }
}


/* Reservation Section con Imagen de Fondo */
.reservation-section {
  position: relative;
  padding: 100px 0;
}

.reservation-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('5eb22b3a6cdc37d4b8e7097e8820e8b6.jpg') no-repeat center center;
  background-size: cover;
  filter: brightness(0.25);
  z-index: 0;
}

.reservation-section .container {
  position: relative;
  z-index: 1;
}

.reservation-section .section-title::after {
  background-color: white;
}

.reservation-section .card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

/* Testimonials Section */
.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.testimonial-item {
  flex: 0 0 calc(50% - 20px);
  margin-bottom: 20px;
}

.testimonial-content {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: all 0.3s ease;
  border-left: 4px solid var(--secondary-color); /* Verde */
  position: relative;
}

.testimonial-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 5rem;
  font-family: var(--font-secondary);
  color: rgba(39, 174, 96, 0.15); /* Verde muy transparente */
  line-height: 1;
}

.testimonial-stars {
  color: #FFD700;
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-color);
  font-size: 1.05rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author .name {
  font-weight: 600;
  color: var(--accent-color); /* Negro */
}

.testimonial-author .title {
  font-size: 0.85rem;
  color: var(--secondary-color); /* Verde */
}

@media (max-width: 992px) {
  .gallery-sizer,
  .gallery-item,
  .gallery-item-large,
  .gallery-item-wide {
    width: 50%;
  }
  
  .feature-dish-image {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
  }
}

@media (max-width: 768px) {
  .gallery-sizer,
  .gallery-item,
  .gallery-item-large,
  .gallery-item-wide {
    width: 100%;
  }
  
  .gallery-item-tall .gallery-img {
    height: 350px !important;
  }
  
  .about-gallery-thumbs .thumb {
    height: 80px;
  }
  
  .about-gallery-thumbs img {
    height: 80px;
  }
}

@media (max-width: 767px) {
  .testimonial-item {
    flex: 0 0 100%;
  }
}

/* Nuevos estilos para mejorar el aspecto visual */

/* Mejora del estilo de las cards con efecto de elevación */
.menu-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  height: 100%;
  background: white;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
}

.menu-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 20px 40px rgba(231, 76, 60, 0.15); /* Sombra roja */
  border-color: var(--primary-color);
}

/* Wrapper para imágenes del menú */
.menu-item-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f8f8f8;
}

/* Imágenes del menú optimizadas para formato vertical */
.menu-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  display: block;
}

.menu-item:hover img {
  transform: scale(1.05);
}

/* Overlay sutil para las imágenes */
.menu-item-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.05) 100%);
  pointer-events: none;
}

/* Contenido de las cards del menú */
.menu-item-content {
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  min-height: 160px;
}

.menu-item-content h5 {
  font-family: var(--font-secondary);
  color: var(--accent-color); /* Negro */
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.menu-item-content p.text-muted {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.menu-item-content .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color); /* Rojo */
  margin: 0;
  padding-top: 1rem;
  border-top: 2px solid #f0f0f0;
  text-align: center;
}

/* Feature dish mejorado */
.feature-dish {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-bottom: 4rem;
}

.feature-dish-image {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: #f8f8f8;
  position: relative;
}
 .tienda-banner {
          position: fixed;
          bottom: 20px;
          left: 50%;
          transform: translateX(-50%);
          width: 90%;
          max-width: 500px;
          z-index: 1000;
          background: linear-gradient(to right, #d35400, #f39c12);
          color: white;
          border-radius: 12px;
          box-shadow: 0 4px 20px rgba(0,0,0,0.15);
          animation: fadeInUp 0.5s ease forwards;
          /* Añadido para evitar desbordes horizontales */
          box-sizing: border-box;
        }
        
        .tienda-banner-contenido {
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 12px 15px;
          gap: 10px;
          /* Permite que los elementos se ajusten en móvil */
          flex-wrap: wrap;
        }
        
        .tienda-banner-texto {
          display: flex;
          align-items: center;
          gap: 10px;
          font-weight: 600;
          font-size: 1rem;
          /* Permite que el texto se ajuste en móvil */
          flex-shrink: 1;
          min-width: 0;
        }
        
        .tienda-banner-texto i {
          font-size: 1.4rem;
        }
        
        .tienda-banner-boton {
          background-color: white;
          color: #d35400;
          font-weight: 700;
          padding: 8px 16px;
          border-radius: 8px;
          text-decoration: none;
          display: flex;
          align-items: center;
          gap: 6px;
          transition: transform 0.2s ease, background-color 0.2s;
          white-space: nowrap;
          font-size: 1rem;
        }
        
        .tienda-banner-boton:hover {
          transform: scale(1.05);
          background-color: #f9f9f9;
          color: #f39c12;
        }
        
        .tienda-banner-cerrar {
          background: transparent;
          border: none;
          color: white;
          font-size: 24px;
          cursor: pointer;
          line-height: 1;
          padding: 0 8px;
          /* Mejor posición en móvil */
          align-self: flex-start;
        }

.feature-dish-image img {
  /*width: 100%;*/
  height: 600px;
  object-fit: cover;
  background: #f8f8f8;
  border-radius: 0;
  transition: transform 0.5s ease;
}

.feature-dish:hover .feature-dish-image img {
  transform: scale(1.02);
}

/* Overlay para la imagen destacada */
.feature-dish-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(231, 76, 60, 0.1), transparent); /* Rojo transparente */
  pointer-events: none;
}

.feature-dish-content {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
}

.feature-dish-content h3 {
  font-size: 2.2rem;
  color: var(--accent-color); /* Negro */
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.feature-dish-content .lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.feature-dish-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 2rem;
}

/* Badge de especialidad */
.specialty-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary-color); /* Verde */
  color: var(--light-text-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Grid de cards del menú */
.menu-cards {
  margin-top: 3rem;
}

.menu-cards .col-md-6.col-lg-4 {
  margin-bottom: 2.5rem;
}

/* Ajustes responsivos */
@media (max-width: 992px) {
  .feature-dish-image img {
    height: 300px;
  }
  
  .feature-dish-content {
    min-height: auto;
    padding: 2rem 1.5rem;
  }
  
  .feature-dish-content h3 {
    font-size: 1.8rem;
  }
  
  .menu-item-image {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    height: 240px;
  }
}

@media (max-width: 768px) {
  .menu-item-image {
    height: 220px;
  }
  
  .menu-item-content {
    padding: 1.5rem;
    min-height: 140px;
  }
  
  .menu-item-content h5 {
    font-size: 1.2rem;
  }
  
  .feature-dish-image img {
    height: 250px;
  }
  
  .feature-dish-content h3 {
    font-size: 1.6rem;
  }
  
  .feature-dish-content .lead {
    font-size: 1.1rem;
  }
}

/* Team section mejorada */
.team-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f0f0f0;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color); /* Verde */
}

.team-img-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)); /* Degradado rojo-verde */
}

.team-img-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid white;
  background: #f8f8f8;
  transition: transform 0.3s ease;
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.05);
}

.team-card h4 {
  color: var(--accent-color); /* Negro */
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.team-card p.text-primary {
  color: var(--secondary-color) !important; /* Verde */
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-card p.small {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #666;
  margin-bottom: 0;
}

/* Ajustes responsivos para team */
@media (max-width: 768px) {
  .team-img-wrapper img {
    width: 100px;
    height: 100px;
  }
  
  .team-card {
    padding: 1.5rem 1rem;
  }
  
  .team-card h4 {
    font-size: 1.2rem;
  }
}

/* Footer con color negro */
footer {
  background-color: var(--footer-background) !important;
  color: var(--light-text-color);
}

/* Estilos adicionales para elementos específicos */
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-secondary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Promo section mejorada */
.promo-section {
  position: relative;
  overflow: hidden;
}

.promo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color) 0%, #1a1a1a 100%);
  z-index: -1;
}

/* Floating CTA y Back to Top con nuevos colores */
.float-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  background: var(--primary-color);
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3);
}

.float-cta.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(39, 174, 96, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-color-dark);
  color: white;
  transform: translateY(-3px);
}

/* Gallery featured caption mejorada */
.gallery-featured-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(33, 37, 41, 0.9));
  color: white;
  padding: 3rem 2rem 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-featured-item:hover .gallery-featured-caption {
  transform: translateY(0);
}

.gallery-featured-caption h3 {
  color: var(--secondary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* About image overlay mejorada */
.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(231, 76, 60, 0.8), rgba(39, 174, 96, 0.8));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-hero-image:hover .about-image-overlay {
  opacity: 1;
}

.about-image-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.about-hero-image:hover .about-image-content {
  transform: translateY(0);
}

@media (max-width: 600px) {
   
  .tienda-banner {
    width: 100%;          /* Ancho completo */
    max-width: none;      /* Eliminar max-width */
    left: 0;              /* Alinear a la izquierda */
    right: 0;             /* Asegurar que ocupe todo el ancho */
    bottom: 0;            /* Colocar en la parte inferior */
    margin: 0;            /* Eliminar márgenes */
    transform: none;      /* Eliminar transformación */
    border-radius: 0;     /* Eliminar bordes redondeados en móvil */
    box-sizing: border-box;
    overflow: hidden;
}

.tienda-banner-contenido {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 8px 8px 8px;
}

.tienda-banner-texto {
    justify-content: center;
    font-size: 0.95rem;
    gap: 7px;
    margin-bottom: 5px;
    text-align: center;
}

.tienda-banner-boton {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 8px 0;
    margin-bottom: 2px;
}

.tienda-banner-cerrar {
    position: absolute;
    top: 2px;
    right: 5px;
    font-size: 20px;
    padding: 0;
    z-index: 2;
}
   
}

/* Ajuste adicional para pantallas muy pequeñas */
@media (max-width: 320px) {
    .tienda-banner-texto {
        font-size: 0.85rem;
    }
    
    .tienda-banner-texto i {
        font-size: 1.2rem;
    }
    
    .tienda-banner-boton {
        font-size: 0.85rem;
        padding: 6px 0;
    }
}
        padding: 6px 0;
    }
}
