#btnScrollTop.btn-lantern-small {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, #c8102e 0%, #8b0000 100%);
  border: 2px solid #7a0000;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 0 10px #c8102e;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 40px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}

#btnScrollTop.btn-lantern-small.show {
  opacity: 1;
  visibility: visible;
}

#btnScrollTop.btn-lantern-small:hover {
  box-shadow: 0 0 15px 3px #ff3b3b;
  background: linear-gradient(180deg, #ff3b3b 0%, #8b0000 100%);
}

      
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Jura', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Utility Classes */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .flex {
            display: flex;
        }

        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .flex-between {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .grid {
            display: grid;
        }

        .grid-2 {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .grid-3 {
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .grid-4 {
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .text-center {
            text-align: center;
        }

        .relative {
            position: relative;
        }

        .absolute {
            position: absolute;
        }

        .fixed {
            position: fixed;
        }

        /* Navigation */
        

.navbar {
  position: relative;
  background-color:#8a2b2b;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 20px;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

/* Contenedor del nav para alinear elementos */
.nav-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;   /* o 100px si quieres más grande */
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.logo-text h1 {
  font-family: 'Kaushan Script', cursive;
  font-size: 32px;
  margin: 0;
}

.logo-text p {
  font-family: 'Jura', sans-serif;
  font-size: 14px;
  margin: 0;
}

/* Enlaces del nav */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  position: relative;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Jura', sans-serif;
  font-size: 18px;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #E09E59;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* Botón especial */
.btn.btn-primary {
  background-color: #E09E59;
  border: none;
  padding: 8px 16px;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn.btn-primary:hover {
  background-color: #973131;
}


        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 2s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6), rgba(0,0,0,0.4));
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            max-width: 800px;
            width: 100%;
            padding: 0 20px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 8px 16px;
            background: rgba(245, 158, 11, 0.2);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: 50px;
            color: #fbbf24;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }

        .hero-title {
            font-family: 'Kaushan Script', cursive;
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .hero-description {
            font-size: 1.5rem;
            margin-bottom: 3rem;
            color: #e5e7eb;
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-indicators {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            width: 48px;
            border-radius: 6px;
            background: linear-gradient(45deg, white, #fbbf24);
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            animation: float 6s ease-in-out infinite;
        }

        .floating-1 {
            top: 5rem;
            right: 2.5rem;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
        }

        .floating-2 {
            bottom: 10rem;
            left: 2.5rem;
            width: 128px;
            height: 128px;
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(185, 28, 28, 0.2));
            animation-delay: -3s;
        }

        /* Stats Section */
        .stats {
            padding: 6rem 0;
            background: #8a2b2b;
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
            opacity: 0.3;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.5s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .stat-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-10px);
        }

        .stat-icon {
            width: 32px;
            height: 32px;
            margin: 0 auto 1rem;
            color: white;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: white;
            margin-bottom: 0.5rem;
            background: linear-gradient(to bottom, white, #fecaca);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: #fecaca;
            font-weight: 600;
            font-size: 1.125rem;
        }

        header {
  position: relative;
  background-image: url('/img_inicio/comidachina.jpg');
  background-size: cover;
  background-position: center;
  height: 220px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

header::before {
  content: '';
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 0;
}

header .top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

header img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  object-fit: cover;
}

header h1 {
  position: relative;
  font-family: 'Kaushan Script', cursive;
  font-size: 60px;
  text-align: center;
  margin-bottom: 10px;
  z-index: 1;
}


        /* Cards */
        .card {
            background: white;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.7s ease;
            border: none;
        }

        .card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .card-image {
            position: relative;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .card:hover .card-image img {
            transform: scale(1.1);
        }

        .card-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(45deg, #ef4444, #dc2626);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: bold;
            box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
        }

        .card-content {
            padding: 2rem;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .card-description {
            color: #6b7280;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .card-price {
            font-size: 2rem;
            font-weight: bold;
            color: #dc2626;
            margin-bottom: 1.5rem;
        }

        /* Testimonials */
        .testimonials {
            background: linear-gradient(45deg, #1f2937, #374151);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></svg>');
        }

        .testimonial-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonial {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 1.5rem;
            padding: 3rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0;
            transition: opacity 1s ease;
        }

        .testimonial.active {
            opacity: 1;
        }

        .testimonial-stars {
            display: flex;
            justify-content: center;
            gap: 0.25rem;
            margin-bottom: 1.5rem;
        }

        .star {
            width: 24px;
            height: 24px;
            color: #fbbf24;
        }

        .testimonial-text {
            font-size: 1.5rem;
            font-style: italic;
            margin-bottom: 2rem;
            line-height: 1.7;
            font-weight: 300;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .author-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 4px solid rgba(255, 255, 255, 0.2);
        }

        .author-info h4 {
            font-size: 1.25rem;
            font-weight: bold;
            margin-bottom: 0.25rem;
        }

        .author-info p {
            color: #d1d5db;
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 1rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
            opacity: 0;
            transition: opacity 0.5s ease;
            display: flex;
            align-items: flex-end;
            padding: 1rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-text {
            color: white;
        }

        .gallery-text h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .gallery-text p {
            font-size: 0.875rem;
            color: #e5e7eb;
        }

        /* Footer */
.footer {
  background: #8a2b2b;
  color: white;
  padding: 1rem 0;
  position: relative;
  overflow: hidden;
  font-size: 0.85rem;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.02"/></svg>');
}



.footer-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand h3 {
  font-family: 'Kaushan Script', cursive;
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.footer-brand p,
.footer-description {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  color: white;
}

.social-link:hover {
  background: #dc2626;
  transform: scale(1.1);
}

.footer-section h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-hours p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.footer-hours span:last-child {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #ffffff;
  padding-top: 0.5rem;
  text-align: center;
  color: #ffffff;
  font-size: 0.90rem;
  margin-top: 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 750px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  gap: 1rem;
  position: relative;
  z-index: 1;
  align-items: start;
}

.footer-brand {
  text-align: left;
}

.footer-section {
  text-align: center;
}

.footer-hours {
  text-align: right;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-section,
  .footer-hours {
    text-align: center;
  }

  .footer-hours p {
    justify-content: center;
    gap: 1rem;
  }

  .social-links {
    justify-content: center;
  }
}


        /* Responsive Design */
header img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    object-fit: cover;
}

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-description {
                font-size: 1.125rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .grid-2, .grid-3, .grid-4 {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        
            .footer-logo {
  width: 80px;             /* tamaño pequeño */
  height: 80px;
  border-radius: 50%;      /* hace que sea circular */
  object-fit: cover;       /* asegura que no se deforme */
  display: block;          /* quita espacios abajo */
  margin: 0 auto;          /* centra la imagen */
}

        .testimonial-author img {
  width: 60px;            /* ajusta el tamaño según prefieras */
  height:60px;
  border-radius: 50%;     /* hace que sea completamente circular */
  object-fit: cover;      /* recorta la imagen para que no se deforme */
  border: 2px solid white; /* borde opcional para que resalte */
  box-shadow: 0 0 5px rgba(0,0,0,0.2); /* sombra suave opcional */
}


        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, #dc2626, #b91c1c);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(to bottom, #b91c1c, #991b1b);
        }

/* Main Content */
.main-content {
  padding: 3rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
  
  
}

.hero-section h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #e09e59;
  margin-bottom: 1rem;
  
  -webkit-background-clip: text;

  background-clip: text;
}

.hero-section p {
  font-size: 1.2rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
  
}

.feature-card {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 3px solid rgb(168, 15, 15);
  animation: fadeInUp 0.8s ease-out;
  border: 5px solid var(#dc2626);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.cta-section h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 3px solid #e09e59;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: white;
  color: var(--primary-red);
}

.btn-primary:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-red);
  transform: translateY(-2px);
}


/* Misión y Visión: Contenedor y secciones separadas con borde */
.mision-vision-container {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 1rem;
  flex-wrap: wrap;
}

.section-mision,
.section-vision {
  flex: 1 1 45%;
  background-color: white;
  border: 3px solid #e09e59;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.section-mision:hover,
.section-vision:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-red);
}

.section-mision h2,
.section-vision h2 {
  font-family: "Kaushan Script", cursive;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-red);
  text-align: center;
}

.section-mision p,
.section-vision p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgb(0, 0, 0);
  text-align: justify;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-mobile.active {
    display: block;
  }

  .header-title h1 {
    font-size: 2.5rem;
  }

  .hero-section h2 {
    font-size: 2rem;
  }

  .nav-list {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Misión y visión responsive */
  .mision-vision-container {
    flex-direction: column;
  }

  .section-mision,
  .section-vision {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }

  .header-content {
    padding: 0.5rem;
  }

  .header-title h1 {
    font-size: 2rem;
  }

  .hero-section h2 {
    font-size: 1.8rem;
  }

  .cta-section {
    padding: 2rem 1rem;
  }

  .cta-section h3 {
    font-size: 2rem;
  }
}

h2 {
            font-family: 'Kaushan Script', cursive;
            font-size: 2.5rem;
            text-align: center;
            margin: 3rem 0 2rem;
            color: #c53030;
        }
        

        .barra-separadora {
  width: 100%;
  height: 9px; /* Altura de la barra */
  background-color: #E09E59; /* Cambia al color que desees */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Sombra opcional */
}

