@charset "utf-8";
/* CSS Document */
.ra-menu-dinamico {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 20px 45px;
  font-family: Georgia, "Times New Roman", serif;
  color: #3b2718;
  /*background: #fffaf0;*/
}

/* COMIDA CORRIDA */
.ra-comida-corrida {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 10px 0 28px;
  padding: 24px 34px;
  background: #fff4d7;
  border: 1px solid #e1bd65;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(65, 42, 22, 0.12);
  position: relative;
}

.ra-comida-corrida:before {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  left: 8px;
  border: 1px dashed rgba(189, 139, 30, 0.45);
  border-radius: 10px;
  pointer-events: none;
}

.ra-comida-icono {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background: #f2b400;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  position: relative;
  z-index: 1;
}

/*.ra-comida-corrida h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
  color: #3b2718;
  flex: 1;
  position: relative;
  z-index: 1;
}*/

.ra-comida-corrida strong {
  font-size: 36px;
  color: #3b2718;
  position: relative;
  z-index: 1;
}

/* GRID SIN CSS GRID */
.ra-menu-grid {
  display: flex;
  gap: 26px;
  align-items: flex-start;
}

.ra-menu-columna {
  width: 50%;
}

.ra-menu-columna .ra-menu-card {
  width: 100%;
  margin-bottom: 26px;
}

.ra-menu-card {
  background: #fffdf7;
  border: 1px solid #e8dcc9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(65, 42, 22, 0.10);
  box-sizing: border-box;
}

.ra-menu-card-header {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 24px;
  color: #ffffff;
}

.ra-menu-icono {
  width: 34px;
  min-width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ra-svg-icon {
  width: 27px;
  height: 27px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ra-menu-card-header h3 {
  margin: 0;
  font-size: 29px;
  line-height: 1.1;
  color: #ffffff;
}

.ra-color-amarillo .ra-menu-card-header {
  background: #e4a700;
}

.ra-color-verde .ra-menu-card-header {
  background: #5b6f1f;
}

.ra-color-cafe .ra-menu-card-header {
  background: #6a3f22;
}

.ra-menu-lista {
  list-style: none;
  margin: 0;
  padding: 20px 26px 24px;
}

.ra-menu-item {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 6px 0;
  font-size: 20px;
  line-height: 1.25;
}

.ra-menu-nombre {
  color: #2d2017;
}

.ra-menu-linea {
  flex: 1;
  border-bottom: 2px dotted rgba(151, 100, 41, 0.35);
  margin-bottom: 6px;
  min-width: 20px;
}

.ra-menu-precio {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #2d2017;
  white-space: nowrap;
}

/* BOTONES INFERIORES */
.ra-menu-botones {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 38px;
  padding-top: 25px;
  border-top: 1px solid rgba(196, 151, 62, 0.35);
}

.ra-menu-boton {
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 24px;
  border-radius: 10px;
  font-size: 23px;
  font-weight: 700;
  text-decoration: none;
}

.ra-menu-boton:hover {
  box-shadow: 0 8px 18px rgba(65, 42, 22, 0.18);
}

.ra-menu-boton-galeria {
  background: #4f631b;
  color: #ffffff;
  border: 2px solid #d5c282;
}

.ra-menu-boton-pdf {
  background: #f2b400;
  color: #3b2718;
  border: 2px solid #b77c00;
}

/* RESPONSIVE */
@media screen and (max-width: 850px) {
  .ra-menu-dinamico {
    padding: 15px 12px 35px;
  }

  .ra-comida-corrida {
    flex-wrap: wrap;
    padding: 22px 22px;
  }

  .ra-comida-corrida h2 {
    font-size: 26px;
  }

  .ra-comida-corrida strong {
    width: 100%;
    font-size: 32px;
    text-align: right;
  }

 @media screen and (max-width: 850px) {
  .ra-menu-grid {
    display: block;
  }

  .ra-menu-columna {
    width: 100%;
  }

  .ra-menu-columna .ra-menu-card {
    margin-bottom: 22px;
  }
}

.ra-menu-card {
  width: 100%;
  margin: 0 0 22px;
}

  .ra-menu-card-header h3 {
    font-size: 25px;
  }

  .ra-menu-item {
    font-size: 18px;
  }

  .ra-menu-botones {
    display: block;
  }

  .ra-menu-boton {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin-bottom: 14px;
    font-size: 20px;
  }
}
.ra-boton-icono {
  width: 28px;
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ra-boton-icono .ra-svg-icon {
  width: 26px;
  height: 26px;
}

.ra-menu-boton-galeria .ra-svg-icon {
  stroke: #ffffff;
}

.ra-menu-boton-pdf .ra-svg-icon {
  stroke: #3b2718;
}

/*ADICIONAL COMIDA CORRIDA*/
.ra-comida-texto h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
  color: #3b2718;
}

.ra-comida-texto p {
  margin: 6px 0 0;
  font-size: 20px;
  line-height: 1.3;
  color: #6b5a21;
}
.ra-comida-texto {
  flex: 1;
  position: relative;
  z-index: 1;
}
.ra-menu-texto {
  min-width: 0;
}

.ra-menu-descripcion {
  display: block;
  margin-top: 3px;
  font-size: 15px;
  line-height: 1.25;
  color: #6d6258;
  font-family: Georgia, "Times New Roman", serif;
}

.ra-menu-item {
  align-items: flex-start;
}

.ra-menu-linea {
  margin-top: 18px;
}

.ra-boton-icono {
  width: 28px;
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ra-boton-icono .ra-svg-icon {
  width: 26px;
  height: 26px;
}

.ra-menu-boton-galeria .ra-svg-icon {
  stroke: #ffffff;
}

.ra-menu-boton-pdf .ra-svg-icon {
  stroke: #3b2718;
}
.ra-menu-grupo {
  margin-bottom: 38px;
}

.ra-menu-grupo-titulo {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 34px 0 22px;
}

.ra-menu-grupo-titulo span {
  flex: 1;
  height: 1px;
  background: rgba(196, 151, 62, 0.45);
}

.ra-menu-grupo-titulo h2 {
  margin: 0;
  padding: 8px 24px;
  background: #fff4d7;
  border: 1px solid #e1bd65;
  border-radius: 999px;
  color: #3b2718;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.1;
  text-align: center;
}

@media screen and (max-width: 850px) {
  .ra-menu-grupo-titulo {
    gap: 10px;
    margin: 28px 0 18px;
  }

  .ra-menu-grupo-titulo h2 {
    font-size: 22px;
    padding: 8px 16px;
  }
}
.ra-menu-acceso {
  margin: 0 0 34px;
  padding: 20px 24px;
  background: #fffdf7;
  border: 1px solid #e8dcc9;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(65, 42, 22, 0.08);
  text-align: center;
}

.ra-menu-acceso p {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: bold;
  color: #3b2718;
}

.ra-menu-acceso-botones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.ra-menu-acceso-botones a {
  display: inline-block;
  padding: 11px 18px;
  background: #f2b400;
  border: 1px solid #b77c00;
  border-radius: 999px;
  color: #3b2718;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ra-menu-acceso-botones a:hover {
  background: #5b6f1f;
  border-color: #5b6f1f;
  color: #ffffff;
}

.ra-menu-grupo {
  scroll-margin-top: 25px;
}

html {
  scroll-behavior: smooth;
}

@media screen and (max-width: 850px) {
  .ra-menu-acceso {
    padding: 18px 14px;
  }

  .ra-menu-acceso-botones {
    display: block;
  }

  .ra-menu-acceso-botones a {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
  }
}