:root {
  --primary: #d7282f;
  --dark: #151515;
  --light: #f4f5f7;
  --radius: 1rem;
  --shadow: 0 10px 40px rgba(0,0,0,.03);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #222;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: var(--shadow);
}

.topbar {
  background: var(--dark);
  color: #fff;
  font-size: .75rem;
  padding: .45rem 1rem;
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  flex-wrap: wrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .9rem 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform .2s ease-in-out;
}

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

.logo span {
  display: block;
  font-weight: 600;
  font-size: 1rem;
}

.logo small {
  color: #666;
  font-size: 0.75rem;
}

.menu {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  font-size: .85rem;
}

.menu a {
  color: #333;
  font-weight: 500;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.5rem;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: .25s;
}

.menu a:hover::after {
  width: 100%;
}

.menu a.active {
    color: #d7282f;        /* rojo tu marca */
    font-weight: 600;
    position: relative;
}

.menu a.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #d7282f;
    border-radius: 4px;
}




.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: .55rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  gap: .3rem;
  align-items: center;
  font-size: .8rem;
}

/* HERO */
.hero-wrapper {
  background: url("/assets/images/imagen.avif") center/cover no-repeat;
  border-bottom: 1px solid rgba(0,0,0,.03);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.8rem 1rem 1.8rem;
  align-items: center;
}

/* caja izquierda del hero */
.hero-left {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero-left .hero-badge {
  display: inline-flex;
  gap: .4rem;
  background: rgba(215, 40, 47, .1);
  color: var(--primary);
  border-radius: 999px;
  padding: .35rem 1rem;
  font-size: .7rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-left h1 {
  font-size: clamp(2.3rem, 3.4vw, 3.1rem);
  line-height: 1;
  margin: 0 0 .8rem;
}

.hero-left p {
  color: #555;
  max-width: 520px;
  margin-bottom: 1.3rem;
}

.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.3rem;
}

.link-app {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .3rem;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-size: 1.4rem;
}

/* derecha hero */
.hero-right {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(2px);
  min-height: 0;
  border-radius: 1.4rem;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.hero-wrapper {
  padding-bottom: 2.5rem; /* por si quieres un poco más de aire bajo la franja */
}

.hero-wrapper .services-bar {
  margin-top: -0.5rem;  /* juega con -0.5rem, -1rem, etc. */
}


/* Servicios debajo del hero */
.services-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: .5rem 1rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.service-item {
  background: #fff;
  border-radius: .9rem;
  border: 1px solid rgba(0,0,0,.03);
  padding: .75rem .8rem .8rem;
  display: flex;
  gap: .75rem;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.02);
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: .8rem;
  background: rgba(215,40,47,.12);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.service-text {
  font-size: .7rem;
  color: #666;
}

/* SECCIONES GENERALES */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.6rem 1rem;
}

.bg-light {
  background: var(--light);
}

.section-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-title small {
  color: #777;
  display: block;
  margin-top: .3rem;
}

.link-action {
  font-weight: 600;
}

/* CARDS GENERALES */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px,1fr));
  gap: 1.4rem;
}

.card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(0,0,0,.03);
  padding: 1rem;
  box-shadow: 0 10px 40px rgba(0,0,0,.02);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.card-img {
  width: 100%;
  border-radius: .7rem;
  object-fit: cover;
  height: 140px;
  margin-bottom: .4rem;
}

/* SUCURSALES */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 1.1rem;
}

.location {
  background: #fff;
  padding: 1.1rem 1.2rem;
  border-radius: .9rem;
  border: 1px solid rgba(0,0,0,.04);
}

.location small {
  color: #777;
}

/* Imagenes de sucursales (para que se vean completas) */
.location-img {
  width: 100%;
  display: block;
  border-radius: .7rem;
  margin-bottom: .6rem;
  height: auto;       /* deja que la imagen tome su altura real */
  object-fit: contain;/* no recorta, encaja la imagen completa */
}


/* APP */
.app-block {
  background: linear-gradient(120deg, #d7282f 0%, #f67a2b 100%);
  border-radius: 1.1rem;
  padding: 2.1rem 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  color: #fff;
}

.app-text {
  flex: 1 1 320px;
}

.app-text p {
  margin: 0;
}

.app-block ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.app-actions {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.app-btn {
  background: #fff;
  color: #d7282f;
}

.app-link {
  color: #fff;
  font-weight: 500;
}

.app-mockup {
  flex: 0 0 240px;
  max-width: 260px;
}

.phone-shell {
  background:#111;
  border-radius:1.5rem;
  padding:1rem 1rem 1.4rem;
  max-width:240px;
  box-shadow:0 15px 30px rgba(0,0,0,.12);
}

.phone-body {
  background:#fff;
  border-radius:1.2rem;
  min-height:340px;
  padding:1rem;
}

.phone-body h4 {
  margin-top:0;
  margin-bottom:.4rem;
}

.phone-sub {
  font-size:.78rem;
  color:#555;
  margin-bottom:1rem;
}

.phone-item {
  background:#f6f6f6;
  border-radius:.7rem;
  padding:.5rem .7rem;
  margin-bottom:.5rem;
}

/* CONTACTO */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-form {
  max-width:630px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding:.7rem .9rem;
  border:1px solid #ddd;
  border-radius:.6rem;
  font-family:inherit;
}

.contact-form textarea {
  grid-column:1/3;
  min-height:110px;
}

.contact-form button {
  grid-column:1/3;
  justify-self:flex-start;
}

.contact-img {
  width: 220px;        /* tamaño cuadrado */
  height: 220px;
  object-fit: cover;   /* recorte profesional */
  border-radius: 1rem;
  display: block;
  margin-left: auto;   /* la pega al lado derecho */
  margin-right: 0;
}



/* FOOTER */
/* ========== FOOTER REDISEÑADO ========== */

.footer {
    background: #111;
    color: #eee;
    padding: 3.2rem 1rem 2rem;
    border-top: 3px solid #d7282f;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: .9rem;
    color: #ccc;
    max-width: 260px;
    line-height: 1.5;
    margin-bottom: 1.3rem;
}

/* Redes sociales */
.footer-social a i {
    font-size: 2rem;
    color: #d7282f;
    transition: .25s ease;
}

.footer-social a:hover i {
    transform: scale(1.12);
    color: #ff3b30;
}

/* Columna */
.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: .45rem;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: .9rem;
    transition: .3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* Contacto */
.footer-contact li {
    font-size: .9rem;
    color: #ddd;
}

/* Línea final */
.footer-bottom {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: .85rem;
    color: #bbb;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-desc {
        margin: 0 auto 1.5rem;
    }

    .footer-social {
        justify-content: center;
        display: flex;
        margin-bottom: 1rem;
    }

    .footer-col ul li {
        margin-bottom: .6rem;
    }
}


/* =========================
   RESPONSIVE
   ========================= */

/* 1) laptop / pantallas medianas */
@media (max-width: 1100px) {
  .main-nav {
    gap: 1rem;
    padding: .9rem 1rem;
  }
  .hero {
    gap: 1.5rem;
  }
  .section {
    padding: 2.3rem 1rem;
  }
}

/* 2) tablet horizontal */
@media (max-width: 992px) {
  .main-nav {
    justify-content: space-between;
  }
  .menu {
    gap: .8rem;
  }
  .logo-img {
    height: 58px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 2.2rem;
  }
  .hero-left {
    max-width: 680px;
    margin: 0 auto;
  }
  .hero-right {
    min-height: 240px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-form {
    max-width: 100%;
  }

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

/* 3) tablet chica / móvil grande */
@media (max-width: 768px) {
  .menu {
    display: none;
  }
  .btn-primary {
    font-size: .8rem;
    padding: .5rem 1rem;
  }
  .logo-img {
    height: 54px;
  }

  .hero-left h1 {
    font-size: clamp(2rem, 5.8vw, 2.6rem);
  }
  .actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-stats {
    gap: 1rem;
  }

  .services-bar {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .app-block {
    flex-direction: column;
    align-items: flex-start;
  }
  .app-mockup {
    max-width: 220px;
  }

  footer {
    text-align: center;
  }
  .footer-grid {
    justify-items: center;
  }
  .footer-brand {
    justify-content: center;
  }
}

/* 4) móvil */
@media (max-width: 580px) {
  .hero {
    padding: 2rem .9rem 1.4rem;
  }
  .hero-left {
    padding: 1.1rem 1rem;
  }
  .hero-stats {
    flex-direction: column;
  }
  .services-bar {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 2rem .9rem;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form textarea,
  .contact-form button {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-logo {
    width: 110px;
  }
}

/* 5) muy chico */
@media (max-width: 400px) {
  .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .app-actions {
    flex-direction: column;
    width: 100%;
  }
  .app-actions .btn-primary {
    width: 100%;
  }
}

/* ====== NAV MOBILE ====== */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 34px;
  height: 28px;
  cursor: pointer;
  position: relative;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  background: #151515;
  left: 0;
  transition: .25s;
  border-radius: 20px;
}

.nav-toggle-label span {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle-label span::before {
  top: -9px;
}

.nav-toggle-label span::after {
  top: 9px;
}

/* móvil */
@media (max-width: 768px) {
  .main-nav {
    position: relative;
  }

  /* mostramos hamburguesa */
  .nav-toggle-label {
    display: block;
  }

  /* ocultamos menú por defecto */
  .menu {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    position: absolute;
    top: 100%;
    right: 1rem;
    background: #fff;
    padding: 1rem 1.2rem;
    border-radius: .9rem;
    box-shadow: 0 10px 40px rgba(0,0,0,.1);
    width: min(230px, 80vw);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: .25s;
    z-index: 99;
  }

  /* botón ordena ahora en móvil que no estorbe */
  .btn-primary {
    margin-left: .5rem;
  }

  /* cuando está checked mostramos menú */
  .nav-toggle:checked ~ .menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* animación hamburguesa → X */
  .nav-toggle:checked + .nav-toggle-label span {
    background: transparent;
  }
  .nav-toggle:checked + .nav-toggle-label span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .nav-toggle:checked + .nav-toggle-label span::after {
    top: 0;
    transform: rotate(-45deg);
  }
}


/* ===== BOTONES PLAY STORE / APP STORE ===== */
.store-btn img {
  height: 48px;
  width: auto;
  display: block;
  transition: transform .2s ease-in-out;
}

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

/* ===== MOCKUP MÁS PEQUEÑO ===== */
.phone-small .phone-shell {
  max-width: 180px;      /* antes era 240px */
  padding: 0.8rem;
}

.phone-small .phone-body {
  min-height: 260px;     /* antes 340px */
  padding: 0.8rem;
}

.phone-small .phone-item {
  font-size: 0.75rem;
  padding: 0.4rem 0.6rem;
}


/* Pantalla real dentro del mockup del teléfono */
.phone-screen {
  padding: 0 !important;
  background: #000;
  overflow: hidden;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* llena la pantalla completa */
  border-radius: 1rem;  /* suaviza bordes internos */
}




/*///////////////RESTAURANTS////////////*/

.restaurants-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.restaurants-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: .5rem;
    color: #d7443f;
}

.restaurants-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
}

.restaurant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* ANTES TENÍAS display:flex (fila) */
.restaurant-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
    
    display: flex;
    flex-direction: column;   /* apila imagen y texto */
}

/* IMAGEN CUADRADA ARRIBA */
.rest-img {
    width: 40%;
    aspect-ratio: 1 / 1; 
    height: auto;
    object-fit: cover;     /* recorta sin deformar */
    object-position: center;
    border-radius: 1rem 1rem 0 0;
    display: block;
    margin: 0 auto;
}


/* TEXTO ABAJO OCUPANDO TODO EL ANCHO */
.rest-info {
    padding: 1.5rem;
    width: 100%;
}


.rest-info h3 {
    margin: 0 0 .6rem;
    color: #d7443f;
}

.rest-subtitle {
    margin: 1rem 0 .3rem;
    font-weight: bold;
    color: #444;
}

.rest-text {
    color: #555;
    line-height: 1.4;
}

@media(max-width: 900px) {
    .restaurant-grid {
        grid-template-columns: 1fr;
    }
    .rest-img {
        height: 240px;
    }
}


/* link pequeño a Google Maps por sucursal */
.maps-link {
  display: inline-block;
  margin-top: .6rem;
  font-size: .85rem;
  font-weight: 600;
}

/* bloque del mapa general */
.restaurants-map-block {
  margin-top: 3rem;
  text-align: center;
}

.restaurants-map-block h3 {
  margin-bottom: .3rem;
}

.restaurants-map-block p {
  color: #555;
  margin-bottom: 1rem;
}

.restaurants-map {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.restaurants-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* un poco más bajo en móvil */
@media (max-width: 600px) {
  .restaurants-map iframe {
    height: 320px;
  }
}


.map-label {
    background: #d7282f;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}



/* ----------about---------- */

/* ============ ABOUT / NOSOTROS ============ */

/* HERO CON IMAGEN DE FONDO (SE MANTIENE EL DISEÑO) */
.about-hero {
    position: relative;
    padding: 4rem 1rem 3rem;
    color: #111;
    background: url('../images/guanajuatos.jpg') center center / cover no-repeat;
    overflow: hidden;
}

/* Capa blanca degradada para que el texto se lea bien */
.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.94) 45%,
        rgba(255, 255, 255, 0.70) 70%,
        rgba(255, 255, 255, 0.25) 100%
    );
    z-index: 0;
}

/* Contenido del hero */
.about-hero-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
    z-index: 1;
}

.about-tag {
    display: inline-block;
    background: rgba(215,40,47,.15);
    color: #d7282f;
    padding: .35rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .7rem;
    margin-bottom: 1rem;
}

.about-hero h1 {
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    margin-bottom: .7rem;
}

.about-hero p {
    max-width: 640px;
    color: #555;
}

.about-hero-highlight {
    margin-top: 1rem;
    font-weight: 600;
    color: #d7282f;
}

/* Cajita lateral del hero */
.about-box {
    background: #fff;
    border: 1px solid rgba(0,0,0,.03);
    border-radius: 1rem;
    padding: 1.4rem 1.3rem 1.2rem;
    box-shadow: 0 10px 35px rgba(0,0,0,.03);
}

.about-box-text {
    color: #555;
    margin-bottom: .7rem;
}

.about-box-list {
    padding-left: 1.1rem;
    margin: 0;
    color: #444;
    font-size: .85rem;
}

/* BANDA INTRODUCTORIA */
.about-intro {
    background: #fff;
    padding: 2.5rem 1rem 2.2rem;
}

.about-intro-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.about-intro-text p {
    color: #555;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.about-stat {
    background: #fff5f2;
    border-radius: .9rem;
    padding: .9rem 1rem;
    border: 1px dashed rgba(215,40,47,.25);
}

.about-stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #d7282f;
}

.about-stat-label {
    font-size: .85rem;
    color: #555;
}

/* SECCIÓN HISTORIA */
.about-history {
    padding: 2.8rem 1rem 2.8rem;
    background: #fff;
}

.about-history-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 2rem;
    align-items: center;
}

.about-history-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    display: block;
    object-fit: cover;
}

.about-history-content p {
    color: #555;
}

/* Timeline */
.about-timeline {
    border-left: 3px solid rgba(215,40,47,.35);
    margin-top: 1.3rem;
    padding-left: 1.1rem;
}

.about-step {
    margin-bottom: 1.1rem;
}

.about-step small {
    display: block;
    color: #999;
    font-size: .75rem;
    margin-bottom: .1rem;
}

/* ============ PLATILLOS TÍPICOS ============ */

.about-dishes {
    padding: 3rem 1rem 3rem;
    background: #fff;
}

.about-dishes-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.about-dishes-inner h2 {
    margin-bottom: .4rem;
}

.about-dishes-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

/* GRID DE PLATILLOS */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

.dish-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: transform .35s ease;
}

.dish-card:hover img {
    transform: scale(1.04);
}

/* BANDA DE VALORES */
.about-values-band {
    padding: 3rem 1rem 3.2rem;
    background: #fff9f4;
}

.about-values-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.about-values-inner h2 {
    margin-bottom: .4rem;
}

.about-values-subtitle {
    color: #666;
    max-width: 520px;
    margin: 0 auto 1.8rem;
}

/* GRID DE VALORES CON ICONOS */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.2rem;
    margin-top: 1.2rem;
    margin-bottom: 2rem;
}

.value-item i {
    font-size: 3rem;
    color: #d7282f;
    margin-bottom: .8rem;
}

.value-item h4 {
    margin: 0 0 .4rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.value-item p {
    font-size: .9rem;
    color: #4b4b4b;
}

.about-values-text p {
    color: #555;
    max-width: 720px;
    margin: .4rem auto 0;
}

/* ============ ANIMACIONES REVEAL (SCROLL) ============ */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 { transition-delay: .15s; }
.reveal.delay-2 { transition-delay: .30s; }
.reveal.delay-3 { transition-delay: .45s; }
.reveal.delay-4 { transition-delay: .60s; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-hero {
        padding: 3rem 1rem 2.5rem;
        background-position: center top;
    }

    .about-hero-inner {
        flex-direction: column;
    }

    .about-hero::before {
        background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.92) 60%,
            rgba(255, 255, 255, 0.55) 100%
        );
    }

    .about-intro-inner {
        grid-template-columns: 1fr;
    }

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

    .dishes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .dishes-grid {
        grid-template-columns: 1fr;
    }

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




/* HERO */
.contact-hero {
    text-align: center;
    padding: 3rem 1rem 1rem;
}

.contact-hero h1 {
    font-size: 2.4rem;
    margin-bottom: .5rem;
    color: #d7443f;
}

/* GRID PRINCIPAL */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 2.2rem;
}

/* FORMULARIO */
.contact-form-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 12px 34px rgba(0,0,0,.06);
}

.contact-form-card label {
    display: block;
    font-weight: 600;
    margin-bottom: .3rem;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: .8rem 1rem;
    border-radius: .6rem;
    border: 1px solid #ddd;
    margin-bottom: 1rem;
    font-size: .95rem;
}

.full-btn {
    width: 100%;
    text-align: center;
    padding: .9rem 1rem;
    margin-top: .6rem;
}

/* TARJETA DERECHA */
.contact-summary-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 12px 34px rgba(0,0,0,.06);
}

.contact-summary-card p {
    margin-bottom: .7rem;
    color: #555;
}

/* FACEBOOK BOTON */
.contact-social {
    margin-top: .6rem;
}

.facebook-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #1877f2;
    color: #fff;
    padding: .6rem 1rem;
    border-radius: .6rem;
    font-weight: 600;
    text-decoration: none;
    transition: .25s;
}

.facebook-btn:hover {
    opacity: .9;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .contact-section {
        grid-template-columns: 1fr;
    }
}
