* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #e5d3b3;
  color: #fff;
}

:root {
  --sombra-flotante: 0 4px 8px rgba(3, 3, 3, 0.38);
  --color-whatsapp: #25d366;
  --color-blanco: #fff;
  --btn-primario: #f3a64b;
  --btn-text: #99211c;
  --btn-hover: #f7f7f7;
}

.main-header {
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("imagen/textura-madera.webp");
  background-size: cover;
  text-align: center;
  text-decoration: none;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header-content {
  z-index: 2;
  position: relative;
  padding: 0 20px 0 20px;
}

.logo {
  width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.43;
  z-index: 0;
  pointer-events: none;
}

.titulo-principal {
  font-weight: 400;
  font-family: "Damion", cursive;
  font-size: 4.5rem;
  color: #f3a64b;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  line-height: 1;
  margin: 0;
}

.subtitulo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 0;
}

.subtitulo {
  font-family: "Cabin", sans-serif;
  font-size: 1.4rem;
  color: #f3a64b;
  font-weight: 400;
  margin: 0;
}

.linea {
  height: 1px;
  width: 80px;
  background-color: #f3a64b;
}

.navbar {
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("imagen/madera.webp");
  background-size: cover;
  border: none;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
}

.nav-menu li {
  padding: 0 18px;
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #e5d3b3;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #dd6e05;
}

.nav-menu a.active {
  color: #dd6e05;
  text-decoration: none;
}

.btn-reserva,
.btn-reserva2 {
  background-color: var(--btn-primario);
  color: #000000 !important;
  padding: 8px 20px;
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 220ms ease,
    box-shadow 220ms ease;
  will-change: transform, box-shadow;
  display: inline-block;
  cursor: pointer;
  letter-spacing: 1px;
}

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

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

.btn-reserva:active {
  transform: scale(0.98);
}

.btn-reserva2:active {
  transform: scale(0.98);
}

.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 20px;
  padding: 20px 20px;
  background: rgba(32, 17, 1, 0.606);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 12px;
  text-align: center;
  z-index: 2;
  max-width: 500px;
  width: calc(100% - 40px);
}

.hero-seo {
  font-family: "Cabin", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #eacc90;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.btn-telefono {
  display: inline-block;
  background-color: var(--btn-primario);
  color: var(--btn-text);
  padding: 9px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 220ms ease,
    box-shadow 220ms ease;
  will-change: transform, box-shadow;
}

.btn-telefono:hover {
  background-color: var(--btn-hover);
  transform: scale(1.05);
}

.btn-telefono:active {
  transform: scale(0.98);
}

.hero .btn-telefono {
  background-color: #8b0000;
  color: #fff;
}

.hero .btn-telefono:hover {
  background-color: #a30000;
}

.especialidades-cta {
  display: inline-flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 6px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid #f3a64b;
  border-radius: 8px;
  font-size: 2rem;
  padding: 1px 8px 1px 8px;
  cursor: pointer;
  color: #e5d3b3;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease;
}

.menu-toggle:active {
  transform: scale(0.9);
}

.seguiremos {
  max-width: 950px;
  margin: 0 auto;
  padding: 20px 20px;
  text-align: center;
  font-family: "Lato", Georgia, serif;
}

.titulo-bodegon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 2rem;
  font-family: "Cabin", sans-serif;
  color: #8b0000;
}

.seguiremos h3 {
  font-size: 1.2em;
  font-family: "Cabin", sans-serif;
  color: #3b2a1a;
}

.titulo-bodegon img {
  width: 120px;
  height: auto;
  opacity: 0.9;
}

.faq-titulo img {
  width: 120px;
  height: auto;
  opacity: 0.9;
}

.svg-izq {
  margin-right: -10px;
}

.svg-der {
  margin-left: -10px;
  transform: scaleX(-1);
}

.svg-izq2 {
  margin-right: 14px;
}

.svg-der2 {
  margin-left: 14px;
  transform: scaleX(-1);
}

.seguiremos p {
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  margin-top: 20px;
  color: #3b2a1a;
  text-align: left;
}

.texto-especialidades {
  max-width: 900px;
  margin: 20px auto 0;
  line-height: 1.6;
  text-align: center;
  color: #4b3a2a;
}

.texto-platos-clasicos {
  max-width: 900px;
  margin: 20px auto 0;
  line-height: 1.6;
  text-align: center;
  color: #4b3a2a;
}

.cards-especialidades {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  padding: 15px;
  text-align: center;
  font-family: "Lato", sans-serif;
  color: #1a1a1a;
  font-size: 1.3rem;
  background: #f7f2ea;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.separador-linea {
  position: relative;
  max-width: 500px;
  height: 1px;
  background: #8b5a2b;
  margin: 25px auto;
}

.separador-linea::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -4px;
  width: 8px;
  height: 8px;
  background: #8b5a2b;
  border-radius: 50%;
  transform: translateX(-50%);
}

.separador-doble {
  max-width: 500px;
  height: 6px;
  margin: 30px auto;
  border-top: 1px solid #6e4a2a;
  border-bottom: 1px solid #6e4a2a;
}

.tag {
  letter-spacing: 0.01em;
  font-family: "Lato", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: auto;
  text-decoration: none;
  padding: 10px 0;
  color: var(--btn-text);
  font-weight: 700;
  font-size: 1em;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid #f3a64b;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition:
    transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 180ms ease,
    background-color 180ms ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11, 0, 0, 0.18);
  background-color: var(--btn-hover);
  color: var(--btn-text);
}

.tag:active {
  transform: translateY(0) scale(0.98);
}

.tag:focus {
  outline: 3px solid rgba(221, 110, 5, 0.18);
  outline-offset: 3px;
  text-decoration: none;
}

.separador-rombo-centro {
  position: relative;
  max-width: 500px;
  height: 20px;
  margin: 35px auto;
}

.separador-rombo-centro::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  width: 10px;
  height: 10px;
  background: #8b5a2b;
  transform: translateX(-50%) rotate(45deg);
}

.separador-rombo-centro::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  height: 1px;
  background: #8b5a2b;
}

.titulo-bodegon-rombos {
  position: relative;
  display: inline-block;
  padding: 0 40px;
}

.titulo-bodegon-rombos::before,
.titulo-bodegon-rombos::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #8b5a2b;
  transform: rotate(45deg);
}

.titulo-bodegon-rombos::before {
  left: 10px;
}

.titulo-bodegon-rombos::after {
  right: 10px;
}

.card-servicio {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.card-info h3 {
  color: #8b0000;
  font-size: 1.4rem;
  margin-bottom: 10px;
  background: none;
  padding: 0;
  text-align: center;
}

.card-info p {
  font-family: "Lato", sans-serif;
  letter-spacing: 0.01em;
  font-size: 1rem !important;
  color: #3b2a1a;
  margin: 25px 0 25px 0 !important;
  flex-grow: 1;
}

.card,
.card-servicio {
  display: flex;
  flex-direction: column;
}

.card-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-info .tag,
.card-info .btn-telefono,
.card-info .btn-menu,
.card .btn-telefono,
.card .btn-menu {
  margin-top: auto;
  align-self: center;
}

.card-info ul li {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

.card-info ul li strong {
  color: #8b0000;
}

.separador-footer {
  max-width: 600px;
  height: 1px;
  background: linear-gradient(to right, transparent, #8b5a2b, transparent);
  margin: 40px auto;
}

.card-servicio .btn-telefono:hover {
  background-color: var(--btn-hover);
  color: var(--btn-text);
}

.separador-footer {
  max-width: 600px;
  height: 1px;
  background: linear-gradient(to right, transparent, #8b5a2b, transparent);
  margin: 60px auto 40px;
}

.footer {
  background: #2b1f17;
  color: #f3e9dc;
  padding: 50px 10px 20px;
  font-size: 0.95rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.01em;
}

.footer a {
  color: #f3e9dc;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-contenedor {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 13px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h4 {
  font-family: "Cabin", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #e0b97a;
}

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

.footer-col ul li {
  margin-bottom: 10px;
  line-height: 1.4;
}

.footer-mapa iframe {
  width: 100%;
  max-width: 900px;
  height: 200px;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  border: 2px solid #b30000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 0.95rem;
  color: #d6c2a5;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 10px;
  width: 60px;
  height: 60px;
  background-color: var(--color-whatsapp);
  color: var(--color-blanco);
  border-radius: 50%;
  border: 3px solid rgb(249, 246, 246);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--sombra-flotante);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* .whatsapp-float i {
   font-size: 1.9rem
 } */

.whatsapp-float i,
.whatsapp-float .bi {
  font-size: 2.3rem !important;
  color: var(--color-blanco) !important;
}

/* iconitos svg */
/* .footer-col svg {
  margin-right: 8px;
  vertical-align: middle;
 
}
.whatsapp-float svg {
  vertical-align: middle;
}
 */
/* .footer-col ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-col ul li svg {
  flex-shrink: 0;
} */
.whatsapp-float svg {
  width: 2.3rem;
  height: 2.3rem;
  color: var(--color-blanco);
}
.footer-contacto li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-contacto li svg {
  flex-shrink: 0;
}

/* @media (max-width:768px) {

   .whatsapp-float i,
   .whatsapp-float .bi {
     font-size: 2rem !important
   }
 } */

/* @media (max-width:480px) {

   .whatsapp-float i,
   .whatsapp-float .bi {
     font-size: 2rem !important
   }
 } */

/* .bi {
   vertical-align: middle;
   line-height: 1;
   display: inline-block;
   color: #8b0000;
   font-size: 1.05rem
 } */

/* .contacto-bodegon .bi,
 .datos-contacto .bi,
 .intro-contacto .bi,
 .intro-sucursales .bi {
   color: #8b0000;
   font-size: 1.15rem;
   margin-right: 8px
 } */

/* .hero .btn-telefono i {
   margin-right: 10px;
   font-size: 1.25rem;
   vertical-align: middle
 }
 */
/* .footer .bi {
   color: #f3e9dc;
   font-size: 1.05rem;
   margin-right: 8px
 }
 */
/* @media (max-width:768px) {
   .bi {
     font-size: 1rem
   }

   .hero .btn-telefono i {
     font-size: 1.1rem
   }
 } */

.ribbon-arg {
  width: 120px;
  height: 120px;
  overflow: hidden;
  position: absolute;
  top: -20px;
  right: 0;
  z-index: 9999;
  pointer-events: none;
}

.ribbon-arg span {
  position: absolute;
  display: block;
  width: 180px;
  padding: 10px 0;
  background: linear-gradient(
    to bottom,
    #74acdf 0%,
    #74acdf 33%,
    #ffffff 33%,
    #ffffff 66%,
    #74acdf 66%,
    #74acdf 100%
  );
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #333;
  font-size: 6px;
  font-weight: bold;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  text-align: center;
  left: -4px;
  top: 38px;
  transform: rotate(45deg);
  font-family: "Cabin", sans-serif;
  letter-spacing: 1px;
}

.cards-especialidades {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 15px;
}

.card,
.card-servicio {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 3px solid #8b0000;
  display: block;
}

.card-info {
  position: relative;
  background: #fdfaf5;
  border: 1px solid #d4a373;
  margin: 10px;
  padding: 15px 10px 30px 10px !important;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.bodegon-card {
  background: #fdfaf5;
  border: 2px solid #e8caa0;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
  padding: 14px;
  padding-top: 22px;
  overflow: hidden;
  position: relative;
  outline: 2px solid #f3c77a;
  outline-offset: 6px;
}

.bodegon-card.accent-left {
  border-left: 5px double #f3a64b;
}

.bodegon-card .tag,
.bodegon-card .btn-telefono,
.bodegon-card .btn-menu {
  margin-top: auto;
  align-self: center;
}

.bodegon-card::before {
  content: "❧";
  position: absolute;
  top: 8px;
  left: 10px;
  color: #8b0000;
  font-size: 1.05rem;
  opacity: 0.6;
  pointer-events: none;
}

.card-info::before {
  content: "❧";
  position: absolute;
  top: 5px;
  left: 8px;
  color: #8b0000;
  font-size: 1.1rem;
  opacity: 0.6;
}

.card-info h3 {
  color: #8b0000;
  font-size: 1.1rem;
  margin: 0;
  padding-top: 5px;
}

.card-info h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #f3a64b,
    #8b0000,
    #f3a64b,
    transparent
  );
  margin: 8px auto 0;
  border-radius: 2px;
  box-shadow:
    12px 0 0 #8b0000,
    -12px 0 0 #8b0000;
}

.card-info p {
  font-size: 0.9rem !important;
  margin: 15px 0 !important;
  flex-grow: 1;
}

.tag {
  font-size: 0.85rem;
  padding: 8px 15px;
  margin-top: auto !important;
  align-self: center;
}

.card-info .tag,
.card-info .btn-telefono,
.card-info .btn-menu {
  margin-top: auto !important;
  align-self: center;
  z-index: 5;
}

.card-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.card-info ul li {
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  color: #3b2a1a;
  margin-bottom: 5px;
}

.card-info ul li strong {
  color: #8b0000;
}

.card-servicio {
  border-left: 5px double #f3a64b;
}

.fila-de-dos {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
  max-width: 1000px;
  margin: 40px auto;
}

.fila-de-dos .card-info ul {
  padding: 10px 20px;
}

.fila-de-dos .card-info li {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #3b2a1a;
  border-bottom: 1px dashed #d4a373;
  padding-bottom: 8px;
}

.faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-titulo {
  font-family: "Cabin", sans-serif;
  text-align: center;
  font-size: 2rem;
  color: #8b0000;
  margin-bottom: 15px;
  font-weight: 600;
}

.faq-subtitulo {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  color: #8b0000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #f3a64b;
  box-shadow: 0 4px 12px rgba(243, 166, 75, 0.15);
}

.faq-item input {
  display: none;
}

.faq-pregunta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  user-select: none;
  transition: background 0.3s ease;
}

.faq-pregunta:hover {
  background: linear-gradient(135deg, #f9f9f9 0%, #f3f3f3 100%);
}

.faq-pregunta::after {
  content: "▼";
  font-size: 1rem;
  color: #f3a64b;
  transition: transform 0.3s ease;
  display: inline-block;
  margin-left: 15px;
  flex-shrink: 0;
}

.faq-item input:checked + .faq-pregunta {
  background: linear-gradient(135deg, #f3a64b 0%, #e89b3c 100%);
  color: white;
}

.faq-item input:checked + .faq-pregunta::after {
  transform: rotate(180deg);
  color: white;
}

.faq-respuesta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #fafafa;
  border-top: 2px solid #e0e0e0;
}

.faq-item input:checked ~ .faq-respuesta {
  max-height: 500px;
  border-top-color: #f3a64b;
}

.faq-respuesta-contenido {
  padding: 20px;
  color: #555;
  line-height: 1.7;
  font-size: 1.2rem;
}

.faq-respuesta-contenido a {
  color: #f3a64b;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-respuesta-contenido a:hover {
  color: #e89b3c;
  text-decoration: underline;
}

.pedidos-encargo {
  padding: 20px;
  background-color: #fdf5e6;
  border-radius: 10px;
}

.categoria-pedido h3 {
  font-family: "Damion", cursive;
  color: #800000;
  font-size: 28px;
  border-bottom: 2px solid #d4af37;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

.lista-productos {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.lista-productos li {
  margin-bottom: 15px;
  line-height: 1.4;
}

.lista-productos strong {
  display: block;
  color: #800000;
  font-size: 18px;
  font-family: "Lato", sans-serif;
}

.lista-productos span {
  color: #4a4a4a;
  font-size: 16px;
}

.lista-productos small {
  color: #800000;
  font-weight: bold;
}

.recomendado-tag {
  display: inline-block;
  background-color: #eeda97;
  color: #800000;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 12px;
  margin-bottom: 5px;
  letter-spacing: 1px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.texto-bodegon {
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 4px;
  display: block;
  margin-top: 5px;
  color: #fdf5e6;
}

@media only screen and (min-device-width: 767px) and (max-device-width: 1024px) {
  a[href="mailto:elfortinporteno@gmail.com"] {
    font-size: 16px;
  }

  .card-info h3 {
    font-size: 1.6rem;
  }

  .promociones-grid,
  .especiales-grid,
  .minutos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 700px;
    gap: 20px;
    padding: 10px;
  }

  .footer-contenedor {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding: 0 20px;
    /* agrego esto para esapcios tablet */
  }

  .footer-col {
    flex: 1 1 calc(33.33% - 20px);
    min-width: 200px;
  }

  .footer-col.footer-mapa {
    flex: 1 1 100%;
    max-width: 100% !important;
    margin-top: 30px;
  }

  .footer-mapa iframe {
    width: 100% !important;
    max-width: 100% !important;
    height: 350px;
    border-radius: 12px;
  }
  .footer-contacto a[href^="mailto"] {
    font-size: 1.1rem;
    word-break: break-all;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    margin: auto;
    transition: transform 0.3s ease;
  }

  .menu-toggle:active {
    transform: scale(0.85);
  }

  .titulo-principal {
    font-size: 3.2rem;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background:
      linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
      url("imagen/madera.webp");
    background-size: cover;
    transition: max-height 0.5s ease-out;
    padding: 1px 0;
  }

  .nav-menu.show {
    max-height: 650px;
    padding-top:30px;
  }

  .hero-overlay {
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
  }

  .nav-menu li {
    padding: 0;
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(243, 166, 75, 0.12);
  }

  .nav-menu li:first-child {
    border-top: none;
  }

  .subtitulo {
    font-size: 1rem;
  }

  .linea {
    height: 1px;
    width: 55px;
    background-color: #f3a64b;
  }

  .nav-menu a {
    font-size: 1.4rem;
    display: block;
    padding: 10px;
    min-height: 40px;
    line-height: 1.1;
    letter-spacing: 0.3px;
    word-spacing: 0.6px;
    touch-action: manipulation;
    position: relative;
    transition: all 0.3s ease;
  }

  .nav-menu a:hover {
    background: rgba(243, 166, 75, 0.15);
    padding-left: 10px;
  }

  .nav-menu a:active {
    background: rgba(243, 166, 75, 0.25);
    transform: scale(0.97);
  }

  .nav-menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #f3a64b;
    transition:
      width 0.3s ease,
      left 0.3s ease;
  }

  .nav-menu a:hover::after {
    width: 60%;
    left: 20%;
  }

  .nav-menu a:focus-visible {
    outline: 3px solid rgba(243, 166, 75, 0.28);
    outline-offset: 3px;
    border-radius: 6px;
  }

  .nav-menu .btn-reserva {
    display: inline-block;
    margin: 10px auto;
    padding: 12px 24px;
    border-radius: 8px;
    width: 80%;
    max-width: 280px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
  }

  .nav-menu .btn-reserva:hover {
    background-color: var(--btn-hover);
  }

  .nav-menu .btn-reserva:active {
    transform: scale(0.97);
  }

  .nav-menu .btn-reserva::after {
    display: none;
  }

  .seguiremos p {
    font-size: 1.5rem;
  }

  .footer-bottom {
    font-size: 1.25rem;
  }

  .footer {
    font-size: 1.38rem;
  }

  .footer-col h4 {
    font-family: "Cabin", sans-serif;
    font-size: 1.5rem;
  }

  .card-info p {
    font-size: 1.4rem !important;
  }

  .navbar {
    padding: 10px 0;
  }
}

@media (max-width: 850px) {
  .cards-especialidades {
    grid-template-columns: repeat(1, 1fr);
    max-width: 500px;
  }
  .fila-de-dos {
    grid-template-columns: 1fr !important;
  }

  .fila-de-dos .card-info {
    margin: 10px;
    padding: 15px !important;
  }
}

@media (min-width: 800px) and (max-width: 899px) {
  #servicios-especiales .cards-especialidades {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-overlay {
    background: rgba(32, 17, 1, 0.606);
    bottom: auto;
    top: 70%;
    transform: translate(-50%, -50%);
    padding: 28px 28px;
    max-width: 90%;
  }

  .hero-seo {
    text-shadow:
      1px 1px 2px rgba(0, 0, 0, 0.9),
      0 0 6px rgba(0, 0, 0, 0.6);
    color: #f6e2b3;
    font-size: 1.3rem;
    line-height: 1.25;
  }

  .btn-telefono {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.7);
    font-size: 1.6rem;
    padding: 10px 18px;
  }

  .main-header {
    min-height: 130px; /* era 230 */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }

  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }

  .titulo-principal {
    font-size: 3rem;
  }

  .subtitulo {
    font-size: 1rem;
  }

  .subtitulo-wrapper {
    gap: 15px;
  }

  .hero {
    height: 85vh;
  }

  .titulo-bodegon {
    gap: 12px;
  }

  .titulo-bodegon img {
    display: none;
    width: 60px;
  }

  .faq-titulo img {
    display: none;
    width: 120px;
    height: auto;
    opacity: 0.9;
  }

  .svg-izq {
    margin-right: 0;
  }

  .svg-der {
    margin-left: 0;
  }

  .faq-section {
    padding: 25px;
    margin: 40px auto;
  }

  .faq-titulo {
    font-size: 1.8rem;
  }

  .faq-subtitulo {
    font-size: 0.95rem;
  }

  .faq-pregunta {
    padding: 16px;
    font-size: 1rem;
  }

  .faq-respuesta-contenido {
    padding: 16px;
    font-size: 0.95rem;
  }

  .tag {
    font-size: 1.3em;
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .texto-bodegon {
    font-size: 0.9rem !important;
    letter-spacing: 2px !important;
  }
}

@media (max-width: 480px) {

.main-header {
    min-height: 110px;
  }

  .titulo-principal {
    font-size: 2.3rem;
  }

  .subtitulo {
    font-size: 0.9rem;
  }

  .logo {
    width: 200px;
  }

  .subtitulo-wrapper {
    gap: 10px;
  }

  .header-content {
    padding: 0 15px 0 15px;
  }

  .faq-section {
    padding: 15px;
    margin: 20px auto;
  }

  .faq-titulo {
    font-size: 1.5rem;
  }

  .faq-subtitulo {
    font-size: 0.9rem;
  }

  .faq-pregunta {
    padding: 14px;
    font-size: 0.95rem;
  }

  .faq-pregunta::after {
    font-size: 1rem;
  }

  .faq-respuesta-contenido {
    padding: 14px;
    font-size: 0.9rem;
  }

  .card-info h3 {
    font-size: 1.5rem;
  }
}
