@charset "UTF-8";
/*
  Reset personalizado para unificar estilos y resolver problemas comunes
*/
/* Custom Properties */
:root {
  --negro: #393939;
  --tipo-principal: Helvetica, Arial, sans-serif;
  --tipo-secundaria: Verdana;
  --no-hyphens: none;
  background-color: #f7efe0;
}

body {
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

/*body{
  background-image: url(../img/logos/pulpo.png);
  background-position: 50% 90vh;
  background-repeat: no-repeat;
  background-size: contain;

}*/
/* Reseteamos márgenes, paddings y box-model */
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

/* Evitamos problemas con imágenes, videos, iframes y figuras */
img, picture, video, iframe, figure {
  max-width: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

/* Enlaces como cajas por defecto */
a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

/* Excepción para enlaces dentro de párrafos */
p a {
  display: inline;
}

/* Quitamos puntos de listas */
li {
  list-style-type: none;
}

/* Scroll suave */
html {
  scroll-behavior: smooth;
}

/* Reset de texto */
h1, h2, h3, h4, h5, h6, p, span, a, strong, blockquote, i, b, u, em {
  font-size: 1em;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}

/* Quotes */
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

/* Selección de texto */
::-moz-selection {
  background-color: var(--negro);
  color: var(--blanco);
}
::selection {
  background-color: var(--negro);
  color: var(--blanco);
}

/* Formularios y elementos interactivos (excluyendo checkboxes) */
form, input:not([type=checkbox]), textarea, select, button, label {
  font-family: inherit;
  font-size: inherit;
  hyphens: auto;
  background-color: transparent;
  color: inherit;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* Tablas */
table, tr, td {
  border-collapse: collapse;
  border-spacing: 0;
}

/* SVGs */
svg {
  width: 100%;
  display: block;
  fill: currentColor;
}

/* Tipografía base */
body {
  min-height: 100vh;
  font-size: 100%;
  font-family: var(--tipo-principal);
  color: var(--negro);
  line-height: 1.4em;
  hyphens: auto;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#headerMount {
  position: sticky;
  z-index: 1000;
  top: 0;
}

.header {
  background-color: #000000;
  color: #f7efe0;
  position: sticky;
  top: 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-around;
  height: 5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  font-size: larger;
}
.header__return {
  width: 20vw;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
.header__menu {
  width: 0;
  display: flex;
  display: none;
  flex-flow: row nowrap;
  justify-content: center;
}
.header__socials {
  width: 20vw;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

.headerMobile {
  background-color: #000000;
  color: #f7efe0;
  position: sticky;
  top: 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-around;
  height: 3rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  font-size: larger;
}

.presentation__heroContainer {
  position: relative;
  width: 100%;
  height: 100%;
}

/* OVERLAY (NO afecta al texto) */
.presentation__heroContainer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
  pointer-events: none;
  animation: overlayFadeIn 0.6s ease forwards;
  animation-delay: 3.1s;
}

@keyframes overlayFadeIn {
  from {
    background: rgba(0, 0, 0, 0);
  }
  to {
    background: rgba(0, 0, 0, 0.6);
  }
}
/* INFO */
.presentation__heroContainer__info {
  position: absolute;
  hyphens: none;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 0 1rem;
  width: 100%;
  opacity: 0;
  animation: textIn 0.6s ease forwards;
  animation-delay: 3.1s;
  /* ✅ Ajuste LOGO */
}
.presentation__heroContainer__info__logoContainer {
  width: clamp(8rem, 18vw, 20rem);
  margin: 0 auto 1rem;
}
.presentation__heroContainer__info__logoContainer__logo {
  width: 100%;
  height: auto;
  display: block;
}
.presentation__heroContainer__info {
  /* ✅ Ajuste ICONO */
}
.presentation__heroContainer__info__iconContainer {
  width: clamp(14rem, 24vw, 24rem);
  margin: 0 auto 1rem;
}
.presentation__heroContainer__info__iconContainer__icon {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes textIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* TÍTULO */
.presentation__heroContainer__info__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-transform: none;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.55);
}

/* DESCRIPCIÓN */
.presentation__heroContainer__info__text {
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 300;
  line-height: 1.45;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.55);
}

/* VIDEO */
.presentation__heroContainer__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.menuContainer__titleContainer {
  background-color: #000000;
  color: #f7efe0;
  position: sticky;
  top: 5rem;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-around;
  height: 3rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  z-index: 980;
  font-size: larger;
}
@media (max-width: 799px) {
  .menuContainer__titleContainer {
    top: 3rem;
  }
}

.menuContainer__menu {
  position: relative;
  width: 70vw;
  max-width: 1100px;
  min-height: 70vh;
  margin: 4rem auto;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .menuContainer__menu {
    width: 85vw;
    padding: 1rem;
  }
}
@media (max-width: 600px) {
  .menuContainer__menu {
    width: 92vw;
    padding: 1rem;
  }
}
.menuContainer__menu {
  /* =========================
     LOGOS DECORATIVOS
  ========================== */
}
.menuContainer__menu__leftTop, .menuContainer__menu__rightCenter, .menuContainer__menu__leftBottom {
  position: absolute;
  opacity: 0.42;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 0;
  filter: blur(0.4px) contrast(118%);
}
.menuContainer__menu {
  /* 🦀 Superior izquierdo */
}
.menuContainer__menu__leftTop {
  top: 0;
  left: 0;
  width: 960px;
  transform: translate(-30%, -30%) rotate(-190deg);
}
@media (max-width: 1024px) {
  .menuContainer__menu__leftTop {
    width: 700px;
    transform: translate(-28%, -28%) rotate(-190deg);
  }
}
@media (max-width: 600px) {
  .menuContainer__menu__leftTop {
    width: 480px;
    transform: translate(-25%, -25%) rotate(-190deg);
  }
}
.menuContainer__menu {
  /* 🐙 Centro derecho */
}
.menuContainer__menu__rightCenter {
  top: 50%;
  right: 0;
  width: 1040px;
  transform: translate(30%, -50%) rotate(10deg);
}
@media (max-width: 1024px) {
  .menuContainer__menu__rightCenter {
    width: 760px;
    transform: translate(28%, -50%) rotate(10deg);
  }
}
@media (max-width: 600px) {
  .menuContainer__menu__rightCenter {
    width: 520px;
    transform: translate(25%, -50%) rotate(10deg);
  }
}
.menuContainer__menu {
  /* 🐟 Inferior izquierdo */
}
.menuContainer__menu__leftBottom {
  bottom: 0;
  left: 0;
  width: 900px;
  transform: translate(-28%, 28%) rotate(-12deg);
}
@media (max-width: 1024px) {
  .menuContainer__menu__leftBottom {
    width: 660px;
    transform: translate(-26%, 26%) rotate(-12deg);
  }
}
@media (max-width: 600px) {
  .menuContainer__menu__leftBottom {
    width: 460px;
    transform: translate(-24%, 24%) rotate(-12deg);
  }
}

/* =========================
   CONTENIDO SOBRE LOS LOGOS
========================== */
.menuContainer__menu__dishes {
  position: relative;
  z-index: 2;
  border: medium solid #302f86;
  border-radius: 8px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0);
}

/* =========================
   TÍTULO
========================== */
.menuContainer__menu__title {
  margin: 32px auto 24px;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #302f86;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
@media (max-width: 480px) {
  .menuContainer__menu__title {
    font-size: 1.6rem;
    letter-spacing: 0.8px;
  }
}

.menuContainer__buttons {
  display: flex;
  gap: 2rem;
  padding: 1rem 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #f7efe0;
}
@media (max-width: 768px) {
  .menuContainer__buttons {
    gap: 1.25rem;
  }
}
.menuContainer__buttons__button {
  position: relative;
  background: none;
  border: none;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(48, 47, 134, 0.55);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.menuContainer__buttons__button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background-color: #302f86;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.menuContainer__buttons__button {
  /* 👇 HOVER SOLO EN DISPOSITIVOS QUE LO SOPORTAN */
}
@media (hover: hover) {
  .menuContainer__buttons__button:hover {
    color: #302f86;
  }
  .menuContainer__buttons__button:hover::after {
    transform: scaleX(1);
  }
}
.menuContainer__buttons__button--active {
  color: #302f86;
}
.menuContainer__buttons__button--active::after {
  transform: scaleX(1);
}
.menuContainer__buttons__button:focus-visible {
  outline: none;
  color: #302f86;
}

/* ==============================
   KEYFRAMES
================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==============================
   CARD BASE (solo layout común)
================================ */
.menu-card-single, .menu-card-options {
  width: 90%;
  margin: 24px auto;
  padding: 26px 24px 26px 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8078431373);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", sans-serif;
  position: relative;
  overflow: hidden;
  /* 🔥 animación */
  opacity: 0;
  animation: fadeUp 0.6s ease-out forwards;
}
.menu-card-single::before, .menu-card-options::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #302f86;
}
.menu-card-single::after, .menu-card-options::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border: 2px solid #302f86;
  border-radius: 30px;
  right: -60px;
  top: -60px;
  opacity: 0.08;
}

/* ==============================
   CARD WITH OPTIONS (A)
================================ */
.menu-card-options__title-es {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
}
.menu-card-options__title-en {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 18px;
  font-style: italic;
}
.menu-card-options__option {
  margin-bottom: 14px;
}
.menu-card-options__option-es {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  font-size: 1rem;
  color: #222;
}
.menu-card-options__option-name {
  line-height: 1.35;
  white-space: normal;
}
.menu-card-options__option-en {
  font-size: 0.9rem;
  color: #777;
  margin-top: 2px;
}

/* ==============================
   SINGLE DISH CARD (B)
================================ */
.menu-card-single {
  display: grid;
  grid-template-columns: 1fr;
}

.menu-card-single__header {
  display: contents;
}

.menu-card-single__title-es {
  order: 1;
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  line-height: 1.35;
  margin-bottom: 4px;
}

.menu-card-single__title-en {
  order: 2;
  font-size: 0.95rem;
  color: #777;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 6px;
}

/* ==============================
   PRICE (shared)
================================ */
.menu-price {
  color: #302f86;
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
}

/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 480px) {
  .menu-card-options,
  .menu-card-single {
    padding: 20px 18px 20px 24px;
  }
  .menu-card-options__title-es,
  .menu-card-single__title-es {
    font-size: 1.25rem;
  }
}
/* ===============================
   Footer – Testal Mar
   =============================== */
.footer {
  background-color: #000000;
  color: #f7efe0;
  padding-top: 3rem;
  font-size: 0.95rem;
}
.footer__top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}
.footer {
  /* ---------------------------
     Brand
  --------------------------- */
}
.footer__brand__logo {
  width: 160px;
  margin-bottom: 1rem;
  margin: 0 auto;
}
.footer__brand__text {
  line-height: 1.6;
  opacity: 0.9;
}
.footer {
  /* ---------------------------
     Titles
  --------------------------- */
}
.footer__title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.footer {
  /* ---------------------------
     Nav links
  --------------------------- */
}
.footer__nav, .footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer__link {
  color: #f7efe0;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.footer__link:hover {
  opacity: 1;
  transform: translateX(4px);
}
.footer {
  /* ---------------------------
     Socials
  --------------------------- */
}
.footer__socials__icons {
  display: flex;
  gap: 1rem;
}
.footer__socials__icons a {
  color: #f7efe0;
  font-size: 1.3rem;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.footer__socials__icons a:hover {
  opacity: 1;
  transform: translateY(-3px);
}
.footer {
  /* ---------------------------
     Bottom bar
  --------------------------- */
}
.footer__bottom {
  border-top: 1px solid rgba(247, 239, 224, 0.25);
  text-align: center;
  padding: 1.25rem 1rem;
  font-size: 0.8rem;
  opacity: 0.85;
}

/* ===============================
   Mobile tweaks
   =============================== */
@media (max-width: 640px) {
  .footer {
    text-align: center;
  }
  .footer__socials__icons {
    justify-content: center;
  }
  .footer__nav, .footer__contact {
    align-items: center;
  }
}
.menuNavContainer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.menuNavContainer.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.menuNavContainer__menu {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.menuNavContainer__menu a {
  text-decoration: none;
  color: #f7efe0;
  font-family: "Segoe UI", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.25s ease, transform 0.25s ease;
}
.menuNavContainer__menu a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}
.menuNavContainer__menu__close {
  position: absolute;
  top: -64px;
  right: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.menuNavContainer__menu__close-icon {
  font-size: 2.2rem;
  color: #f7efe0;
  line-height: 1;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menuNavContainer__menu__close:hover .menuNavContainer__menu__close-icon {
  transform: rotate(90deg);
  opacity: 0.85;
}
.menuNavContainer__menu__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 12px;
}
.menuNavContainer__menu__socials__link {
  color: #f7efe0;
  font-size: 2rem;
  transition: transform 0.25s ease, color 0.25s ease;
}
.menuNavContainer__menu__socials__link:hover {
  color: #ffffff;
  transform: scale(1.15);
}
.menuNavContainer__menu__socials__link__icon {
  pointer-events: none;
}

/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 480px) {
  .menuNavContainer__menu {
    gap: 22px;
  }
  .menuNavContainer__menu a {
    font-size: 1.1rem;
  }
  .menuNavContainer__menu__close {
    top: -52px;
  }
  .menuNavContainer__menu__close-icon {
    font-size: 2rem;
  }
  .menuNavContainer__menu__socials__link {
    font-size: 1.8rem;
  }
}/*# sourceMappingURL=main_index.css.map */