
/* ===== Variables de color ===== */
:root {
  --fondo: #1c1c1c;
  --fondo-sec: #2a2a2a;
  --acento: #e8a23c;
  --texto: #f2f2f2;
  --gris: #aaaaaa;
  --trans: rgba(0, 0, 0, 0.7);
}


/* ===== Hero ===== */
.hero {
    background: url("/bgresto.jpg") center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
    text-align: center;
    margin-top: 0rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--acento);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gris);
    max-width: 800px;
    margin: 0 auto 25px;
}

.hero .about-image {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero .about-image img {
    width: 180px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

/* ===== Beneficios / Lista ===== */
.event-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    list-style: none;
}

.event-list li {
    background: var(--fondo-sec);
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 220px;
    max-width: 250px;
    text-align: center;
    transition: transform 0.3s;
}

.event-list li i {
    font-size: 2rem;
    color: var(--acento);
    margin-bottom: 10px;
}

.event-list li:hover {
    transform: translateY(-5px);
}

/* ===== Cómo funciona (steps) ===== */
.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
      justify-items: center; /* centra cada step dentro de su columna */
}

.step {
    background: var(--fondo-sec);
    padding: 25px;
    border-radius: 12px;
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
    transition: background 0.3s;
}

.step i {
    font-size: 2.5rem;
    color: var(--acento);
    margin-bottom: 15px;
}

.step h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step:hover {
    background: #333;
}

/* ===== CTA ===== */
.cta {
    background: var(--acento);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #fff;
    color: var(--acento);
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.cta .btn:hover {
    background: var(--fondo);
    color: #fff;
}

/* ===== Footer ===== */
#contacto {
    background: #000;
    color: #fff;
    padding: 60px 20px 30px;
    font-family: "Segoe UI", Arial, sans-serif;
}

#contacto .footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}

/* Cada columna */
#contacto .footer-column {
    flex: 1;
    /* Tres columnas iguales */
    min-width: 220px;
    /* Evita que se achique demasiado */
}

#contacto .footer-column h1,
#contacto .footer-column h3 {
    color: #e8b339;
    margin-bottom: 15px;
}

#contacto .footer-column p {
    color: #fff;
    line-height: 1.6;
    font-size: 0.95rem;
}

#contacto .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#contacto .footer-column ul li {
    margin-bottom: 10px;
}

#contacto .footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

#contacto .footer-column ul li a:hover {
    color: #f5c65a;
}

#contacto .footer-column ul li i {
    margin-right: 8px;
    color: #f5c65a;
}

/* Footer inferior */
#contacto .footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 30px;
    font-size: 0.85rem;
    color: #ccc;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    #contacto .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    #contacto .footer-column {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    #contacto .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

/* ===== Grid de botones de acción ===== */
.acciones-resto {
    padding: 60px 20px;
    background: var(--fondo-sec);
}

.grid-botones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.boton-cuadro {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    text-align: center;
    padding: 20px 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(6px);
}

.boton-cuadro i,
.boton-cuadro .icono {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--acento, #e8a23c);
}

.boton-cuadro span {
    font-weight: 600;
    font-size: 1rem;
}

.boton-cuadro p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 5px;
    line-height: 1.2;
}

.boton-cuadro:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--acento, #e8a23c);
}

.instagram i {
    color: #E1306C;
}

.facebook i {
    color: #1877F2;
}

.whatsapp i {
    color: #25D366;
}

.google i {
    color: #DB4437;
}

.maps i {
    color: #4285F4;
}

.delivery i {
    color: #FFB400;
}

.tripadvisor .icono {
    font-size: 2rem;
}

/* ===== Estilo general (reutiliza tu paleta) ===== */
.how-it-works {
    background: var(--fondo, #1c1c1c);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.how-it-works .section-title h2 {
    font-size: 2.2rem;
    color: #e8a23c;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.how-it-works .section-title p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 40px;
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    position: relative;
    box-shadow: 0 0 10px rgba(232, 162, 60, 0.05);
}

.step:hover {
    border-color: var(--acento, #e8a23c);
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(232, 162, 60, 0.15);
}

.step i {
    font-size: 2.5rem;
    color: var(--acento, #e8a23c);
    margin-bottom: 15px;
    background: rgba(232, 162, 60, 0.1);
    border-radius: 50%;
    padding: 15px;
    transition: all 0.3s ease;
}

.step:hover i {
    background: var(--acento, #e8a23c);
    color: #1c1c1c;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.step p {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.4;
}

/* ✨ Animación de entrada */
.step {
    opacity: 0;
    transform: translateY(20px);
    animation: aparecer 0.6s ease forwards;
}

.step:nth-child(1) {
    animation-delay: 0.1s;
}

.step:nth-child(2) {
    animation-delay: 0.2s;
}

.step:nth-child(3) {
    animation-delay: 0.3s;
}

.step:nth-child(4) {
    animation-delay: 0.4s;
}

.step:nth-child(5) {
    animation-delay: 0.5s;
}

.step:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes aparecer {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🔆 Efecto especial para el último paso */
.step.especial {
    border-color: rgba(232, 162, 60, 0.3);
    box-shadow: 0 0 15px rgba(232, 162, 60, 0.15);
}

.step.especial i {
    animation: brillo 2.5s infinite ease-in-out;
}

@keyframes brillo {
    0%,
    100% {
        color: var(--acento, #e8a23c);
        opacity: 1;
    }
    50% {
        color: #ffd98c;
        opacity: 0.8;
    }
}
/* ===== Sección Centros de Mesa con QR (CON DOS IMÁGENES) ===== */
.centros-qr-section {
    background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
    color: #fff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -3rem;
}

.centros-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: -3rem;
}

.centros-content .text {
    flex: 1 1 450px;
}

.centros-content .text h2 {
    font-size: 2.4rem;
    color: #f5c65a;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.centros-content .text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #eee;
    margin-bottom: 25px;
}

.centros-content .text p strong {
    color: #e8b339;
    /* resaltado dorado */
}

.centros-content .btn-primario {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #e8b339, #f5c65a);
    color: #1c1c1c;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.centros-content .btn-primario:hover {
    background: linear-gradient(135deg, #f5c65a, #e8b339);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(245, 198, 90, 0.4);
}

/* ---------------------------------------------------- */
/* --- ESTILOS PARA LAS DOS IMÁGENES (.imagenes-grupo) --- */
/* ---------------------------------------------------- */

/* 1. Contenedor que agrupa ambas imágenes */
.centros-content .imagenes-grupo {
    flex: 1 1 400px; 
    display: flex;
    gap: 20px; 
    justify-content: center;
    align-items: center;
}

/* 2. Estilo para los contenedores individuales */
.centros-content .imagen,
.centros-content .imagen-dos {
    flex: 1 1 45%; 
    text-align: center;
}

/* 3. Estilo de las imágenes dentro de sus contenedores */
.centros-content .imagen img,
.centros-content .imagen-dos img {
    width: 100%; /* Ocupa el 100% del espacio asignado (45% del grupo) */
    max-width: 250px; /* Limita el tamaño de cada imagen para que no sean enormes */
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 4. Efecto hover */
.centros-content .imagen img:hover,
.centros-content .imagen-dos img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}


/* ===== Responsive General (Aplica al texto y al grupo) ===== */
@media screen and (max-width: 900px) {
    .centros-content {
        /* Se eliminó: flex-direction: column-reverse; */
        /* Ahora usará el valor por defecto: flex-direction: column; */
        text-align: center;
    }
    
    .centros-content .text,
    .centros-content .imagenes-grupo { 
        flex: 1 1 100%;
    }
    
    .centros-content .text h2 {
        font-size: 2rem;
    }
    
    .centros-content .text p {
        font-size: 1rem;
    }
}

/* AJUSTE RESPONSIVE ESPECÍFICO: Hacemos que las dos imágenes se apilen en móvil */
@media screen and (max-width: 600px) {
    .centros-content .imagenes-grupo {
        flex-direction: column;
        gap: 30px;
    }
    
     .centros-content .imagen img {
     max-width: 250px; 
    }
    .centros-content .imagen-dos img {
       max-width: 400px; 
    }
   
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 50px 20px 30px;
    font-size: 0.9rem;
}

.footer-section h3 {
    color: #d08c42;
}

.footer-section:last-child p,
.footer-section:last-child li,
.footer-section:last-child li a {
    color: #fff;
}

.footer-section ul li a:hover {
    color: #f5c65a;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #2b3a4a;
    padding-top: 15px;
    color: #ccc;
}
.antes-imagen {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #e8a23c; /* color dorado/anaranjado */
  margin: 20px 0;
  text-transform: uppercase;
  display: none; /* oculto por defecto */
}

/* Mostrar solo en celulares */
@media (max-width: 767px) {
  .antes-imagen {
    display: block;
  }
}
.section-title h2 {
    font-size: 2rem;
    color: var(--acento); /* 💡 ahora sí usa el color del root */
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-align: center;
}
.section-title p {
    text-align: center;
}
    
