/* components.css — Botones, nav, cards, formularios, footer */

/* =====================
   BOTONES
   ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  min-height: var(--cta-min-height);
  padding: var(--cta-padding);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--cta-font-weight);
  letter-spacing: var(--cta-letter-spacing);
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--cta-transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* Primario */
.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-bg);
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(201,168,76,0.28);
}

.btn-primary:active {
  transform: scale(0.97);
  box-shadow: none;
}

/* Secundario / outline */
.btn-secondary {
  background: transparent;
  color: var(--color-text-primary);
  border: 2px solid var(--color-border-light);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(201,168,76,0.06);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--color-accent);
  border: none;
  padding: 0;
  min-height: auto;
  letter-spacing: 0.04em;
}

.btn-ghost:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Tamaños */
.btn--sm {
  min-height: 40px;
  padding: 0 1.25rem;
  font-size: var(--text-xs);
}

.btn--lg {
  min-height: 60px;
  padding: 0 2.5rem;
  font-size: var(--text-base);
}

/* WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 990;
  width: 56px;
  height: 56px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  color: #fff;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* =====================
   NAVEGACIÓN
   ===================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.nav--scrolled {
  background: rgba(7,18,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-xl);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--duration-fast) var(--ease-out);
}

.nav__logo span {
  color: var(--color-accent);
}

.nav__logo:hover {
  color: var(--color-accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-base) var(--ease-out);
}

.nav__link:hover {
  color: var(--color-text-primary);
}

.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Redes sociales en cabecera */
.nav__social {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  border: 1px solid transparent;
  transition:
    color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
  text-decoration: none;
}

.nav__social-link:hover {
  transform: translateY(-2px);
}

.nav__social-link--ig:hover {
  color: #E1306C;
  border-color: rgba(225,48,108,0.4);
  background: rgba(225,48,108,0.08);
}

.nav__social-link--tt:hover {
  color: #EE1D52;
  border-color: rgba(238,29,82,0.4);
  background: rgba(238,29,82,0.08);
}

.nav__social-link--yt:hover {
  color: #FF0000;
  border-color: rgba(255,0,0,0.4);
  background: rgba(255,0,0,0.08);
}

@media (max-width: 900px) {
  .nav__social { display: none; }
}

/* Hamburger (móvil) */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-xs);
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform var(--duration-base) var(--ease-out),
              opacity var(--duration-fast) ease;
}

.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menú móvil */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: rgba(7,18,10,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  z-index: 899;
  padding: var(--space-2xl);
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile .nav__link {
  font-size: var(--text-xl);
  font-family: var(--font-display);
  color: var(--color-text-primary);
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__actions .btn { display: none; }
  .nav__actions .nav__social { display: none; }
  .nav__toggle { display: flex; }
  .nav {
    background: rgba(7,18,10,0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .nav__inner {
    padding-inline: var(--space-md);
  }
  .nav__logo img {
    height: 40px !important;
    width: auto !important;
  }
}

/* =====================
   HERO
   ===================== */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--color-bg);
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  opacity: 0.82;
  filter: saturate(0.95) brightness(0.92);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(7,18,10,0.62) 0%, rgba(7,18,10,0.04) 38%, rgba(7,18,10,0.72) 100%),
    linear-gradient(to right,  rgba(7,18,10,0.28) 0%, rgba(7,18,10,0.00) 30%, rgba(7,18,10,0.28) 100%);
  z-index: 1;
}

@media (max-width: 768px) {
  .hero {
    align-items: flex-end;
    min-height: 100dvh;
  }
  .hero__bg img {
    object-position: 50% 50%;
    opacity: 0.88;
    filter: saturate(0.98) brightness(0.88);
  }
  .hero__overlay {
    background:
      linear-gradient(to bottom,
        rgba(7,18,10,0.10) 0%,
        rgba(7,18,10,0.05) 35%,
        rgba(7,18,10,0.55) 62%,
        rgba(7,18,10,0.90) 100%
      );
  }
  .hero__content {
    padding-bottom: 2.5rem;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-xl);
  padding-block: var(--space-3xl);
  padding-top: calc(var(--nav-height) + var(--space-3xl));
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
}

.hero__label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--color-accent);
  flex-shrink: 0;
}

.hero__title {
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.05;
  max-width: 14ch;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: italic;
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 48ch;
  line-height: 1.55;
  margin-bottom: var(--space-xl);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-faint);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scroll-bounce 2.4s ease-in-out infinite;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-text-faint);
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 768px) {
  .hero__content {
    padding-inline: var(--space-md);
    padding-top: calc(var(--nav-height) + var(--space-2xl));
  }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
}

/* =====================
   STAT BAR
   ===================== */

.stat-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-xl);
}

.stat-bar__inner {
  display: flex;
  justify-content: space-around;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2xs);
}

.stat-item__value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-accent);
  line-height: 1;
}

.stat-item__label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =====================
   COCKTAIL CARDS
   ===================== */

.cocktail-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out);
}

.cocktail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), var(--shadow-teal);
  border-color: var(--color-teal-dark);
}

/* Visual area — tipográfico, sin dependencia de foto */
.cocktail-card__visual {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--color-surface-2);
}

.cocktail-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-v3.jpg');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.18) saturate(0.4);
  transform: scale(1.08);
  transition: transform var(--duration-slow) var(--ease-out),
              filter var(--duration-base) var(--ease-out);
}

.cocktail-card:hover .cocktail-card__visual::before {
  transform: scale(1.14);
  filter: brightness(0.25) saturate(0.5);
}

.cocktail-card__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--color-surface) 100%);
}

.cocktail-card__num {
  position: absolute;
  bottom: -0.15em;
  right: 0.15em;
  font-family: var(--font-display);
  font-size: 7.5rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(84,160,110,0.08);
  line-height: 1;
  user-select: none;
  z-index: 1;
  transition: color var(--duration-base) ease;
}

.cocktail-card:hover .cocktail-card__num {
  color: rgba(84,160,110,0.15);
}

.cocktail-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--color-accent);
  color: var(--color-bg);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.25em 0.8em;
  border-radius: var(--radius-full);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  z-index: 2;
}

.cocktail-card__body {
  padding: var(--space-lg);
}

.cocktail-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

.cocktail-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  max-width: none;
}

.cocktail-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cocktail-card__price {
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  color: var(--color-accent);
  font-weight: 600;
}

/* =====================
   EDITORIAL QUOTE
   ===================== */

.editorial-quote {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.editorial-quote__bg {
  position: absolute;
  inset: 0;
}

.editorial-quote__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.28) saturate(0.5);
}

.editorial-quote__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(7,18,10,0.7) 0%, rgba(7,18,10,0.3) 50%, rgba(7,18,10,0.7) 100%);
}

.editorial-quote__content {
  position: relative;
  z-index: 1;
  padding: var(--space-2xl) var(--space-xl);
  max-width: 900px;
}

.editorial-quote__text {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  max-width: none;
}

.editorial-quote__text em {
  color: var(--color-accent);
  font-style: italic;
}

.editorial-quote__attr {
  display: block;
  margin-top: var(--space-xl);
  color: var(--color-teal-light);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
  max-width: none;
}

/* =====================
   GALLERY STRIP
   ===================== */

.gallery-strip {
  overflow: hidden;
  line-height: 0;
}

.gallery-strip__track {
  display: flex;
  gap: 3px;
  height: 340px;
}

.gallery-strip__item {
  flex: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.72) saturate(0.8);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.45s ease;
}

.gallery-strip__item:hover img {
  transform: scale(1.07);
  filter: brightness(0.92) saturate(1.1);
}

@media (max-width: 768px) {
  .gallery-strip__track {
    height: 220px;
    gap: 2px;
  }
  .gallery-strip__item:nth-child(n+4) {
    display: none;
  }
}

/* =====================
   COCTEL FOTO GRID
   ===================== */

.coctel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.coctel-foto {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.coctel-foto__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.coctel-foto__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.88) saturate(0.92);
  transition: transform 0.65s cubic-bezier(0.22,1,0.36,1), filter 0.4s ease;
}

.coctel-foto:hover .coctel-foto__img img {
  transform: scale(1.06);
  filter: brightness(0.96) saturate(1.05);
}

.coctel-foto__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,18,10,0.82) 0%, transparent 50%);
  pointer-events: none;
}

.coctel-foto__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  z-index: 1;
}

.coctel-foto__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
  display: block;
  margin-bottom: var(--space-2xs);
}

.coctel-foto .btn-ghost {
  font-size: var(--text-xs);
  color: var(--color-teal-light);
  padding: 0;
  min-height: auto;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .coctel-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--space-sm);
    padding-bottom: var(--space-xs);
    margin-inline: calc(-1 * var(--space-md));
    padding-inline: var(--space-md);
  }
  .coctel-grid::-webkit-scrollbar { display: none; }
  .coctel-foto {
    flex: 0 0 44vw;
    scroll-snap-align: start;
  }
  .coctel-foto__name {
    font-size: var(--text-sm);
  }
}

/* =====================
   TEAM SECTION
   ===================== */

.team-section {
  padding-block: var(--space-3xl);
  background: var(--color-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.team-card__photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.88) saturate(0.9);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.4s ease;
}

.team-card:hover .team-card__photo img {
  transform: scale(1.05);
  filter: brightness(0.95) saturate(1.05);
}

.team-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,18,10,0.85) 0%, transparent 50%);
  pointer-events: none;
}

.team-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  z-index: 1;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.team-card__role {
  font-size: var(--text-xs);
  color: var(--color-teal-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  max-width: none;
}

@media (max-width: 768px) {
  .team-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--space-sm);
    padding-bottom: var(--space-xs);
    margin-inline: calc(-1 * var(--space-md));
    padding-inline: var(--space-md);
  }
  .team-grid::-webkit-scrollbar { display: none; }
  .team-card {
    flex: 0 0 62vw;
    scroll-snap-align: start;
  }
  .team-card__photo {
    aspect-ratio: 3/4;
  }
}

/* =====================
   TAPAS SECTION
   ===================== */

.tapa-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-block: var(--space-md);
  border-bottom: 1px solid var(--color-border);
  gap: var(--space-lg);
}

.tapa-item:last-child { border-bottom: none; }

.tapa-item__info { flex: 1; }

.tapa-item__name {
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-text-primary);
  margin-bottom: var(--space-2xs);
}

.tapa-item__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: none;
}

.tapa-item__price {
  font-family: var(--font-mono);
  font-size: var(--text-base);
  color: var(--color-accent);
  white-space: nowrap;
  font-weight: 600;
}

/* =====================
   EVENTO CARD
   ===================== */

.event-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  display: flex;
  gap: var(--space-xl);
  transition: border-color var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.event-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-accent);
}

.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  padding-top: var(--space-2xs);
}

.event-card__day {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-accent);
  line-height: 1;
}

.event-card__month {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.event-card__body { flex: 1; }

.event-card__title {
  font-size: var(--text-lg);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
  font-family: var(--font-display);
}

.event-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  max-width: none;
}

@media (max-width: 600px) {
  .event-card { flex-direction: column; gap: var(--space-md); }
  .event-card__date { flex-direction: row; gap: var(--space-xs); align-items: baseline; }
}

/* =====================
   FORMULARIO
   ===================== */

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  margin-bottom: var(--space-lg);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: 0.04em;
}

.form-label--required::after {
  content: ' *';
  color: var(--color-accent);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: var(--text-base);
  color: var(--color-text-primary);
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-faint);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238A7F6E' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.form-checkbox__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: none;
}

/* Honeypot anti-spam — oculto visualmente */
.form-gotcha {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}

.form-feedback {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  display: none;
}

.form-feedback--success {
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.3);
  color: #81C784;
}

.form-feedback--error {
  background: rgba(217,83,79,0.1);
  border: 1px solid rgba(217,83,79,0.3);
  color: #EF9A9A;
}

/* =====================
   MAPA + HORARIO
   ===================== */

.location-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}

.location-map {
  position: relative;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: none;
  display: block;
  filter: grayscale(80%) invert(0.9) hue-rotate(180deg) saturate(0.6);
  opacity: 0.85;
}

.location-info {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-xl);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.hours-item:last-child { border-bottom: none; }

.hours-item__day { color: var(--color-text-muted); }
.hours-item__time { color: var(--color-text-primary); font-weight: 500; }
.hours-item--today .hours-item__day { color: var(--color-accent); font-weight: 600; }
.hours-item--closed .hours-item__time { color: var(--color-text-faint); }

.contact-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.contact-link:hover { color: var(--color-accent); }

.contact-link svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
  .location-info { padding: var(--space-xl) var(--space-md); }
}

/* =====================
   FOOTER
   ===================== */

.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-2xl);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand {}

.footer__logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text-primary);
  text-decoration: none;
  display: inline-block;
  margin-bottom: var(--space-md);
}

.footer__logo span { color: var(--color-accent); }

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 36ch;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  transition: border-color var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out),
              background var(--duration-fast) var(--ease-out);
}

.footer__social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(201,168,76,0.06);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

/* Hover por red social */
.footer__social a[aria-label="Instagram de Amaro"]:hover {
  border-color: #E1306C;
  color: #E1306C;
  background: rgba(225,48,108,0.07);
}

.footer__social a[aria-label="TikTok de Amaro"]:hover {
  border-color: #EE1D52;
  color: #EE1D52;
  background: rgba(238,29,82,0.07);
}

.footer__social a[aria-label="YouTube de Amaro"]:hover {
  border-color: #FF0000;
  color: #FF0000;
  background: rgba(255,0,0,0.07);
}

.footer__nav-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__nav-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__nav-links a:hover { color: var(--color-accent); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  max-width: none;
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
}

.footer__legal a {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__legal a:hover { color: var(--color-text-muted); }

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =====================
   SECCIÓN PRIVADOS (CTA BANNER)
   ===================== */

.private-banner {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
}

.private-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(58,122,80,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.private-banner__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.private-banner__text {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

/* =====================
   UTILITIES
   ===================== */

.text-center { text-align: center; }
.text-accent  { color: var(--color-accent); }
.text-muted   { color: var(--color-text-muted); }
.text-faint   { color: var(--color-text-faint); }

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Placeholder de contenido pendiente (visible solo en desarrollo) */
.placeholder-content {
  background: repeating-linear-gradient(
    45deg,
    var(--color-surface-2),
    var(--color-surface-2) 8px,
    var(--color-surface) 8px,
    var(--color-surface) 16px
  );
  border: 1px dashed var(--color-border-light);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  color: var(--color-text-faint);
  font-size: var(--text-xs);
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =====================
   MOBILE OVERHAUL
   Responsive agresivo — mobile-first
   ===================== */

@media (max-width: 768px) {

  /* iOS zoom fix: font-size < 16px dispara zoom en safari */
  .form-input,
  .form-textarea,
  .form-select {
    font-size: 16px !important;
  }

  /* HERO */
  .hero__content {
    padding-top: calc(var(--nav-height) + 3rem);
    padding-bottom: 3rem;
    padding-inline: 1.25rem;
  }
  .hero__label {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
  }
  .hero__title {
    font-size: clamp(2.6rem, 11vw, 4rem);
    max-width: 100%;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
  }
  .hero__subtitle {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 1.75rem;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* STAT BAR — 2×2 en lugar de fila única */
  .stat-bar__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg) var(--space-md);
  }
  .stat-item__value {
    font-size: var(--text-xl);
  }

  /* COCKTAIL CARDS — una columna en pantallas pequeñas */
  .grid-auto {
    grid-template-columns: 1fr;
  }

  /* NAV toggle — target táctil mínimo 44px */
  .nav__toggle {
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  /* MENÚ MÓVIL — links más grandes y legibles */
  .nav__mobile .nav__link {
    font-size: var(--text-xl);
    padding: 0.25rem 0;
  }

  /* PRIVATE BANNER — CTAs apilados */
  .private-banner {
    padding: var(--space-xl) var(--space-lg);
  }
  .private-banner__text {
    font-size: var(--text-base);
  }
  .private-banner > div[style*="display:flex"] {
    flex-direction: column;
    align-items: stretch;
  }
  .private-banner > div[style*="display:flex"] .btn {
    width: 100%;
    justify-content: center;
  }

  /* LOCATION — mapa altura reducida en móvil */
  .location-map iframe {
    min-height: 280px;
  }
  .location-info {
    gap: var(--space-lg);
  }

  /* HOURS — texto más compacto */
  .hours-item {
    font-size: var(--text-xs);
    gap: var(--space-sm);
  }
  .hours-item__time {
    text-align: right;
    flex-shrink: 0;
  }

  /* FORMULARIO — botón submit full width */
  .form-group .btn,
  form .btn[type="submit"] {
    min-height: 56px;
  }

  /* FOOTER social icons — más grandes para touch */
  .footer__social a {
    width: 48px;
    height: 48px;
  }

  /* WHATSAPP FLOAT — reposicionar para no tapar contenido */
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }
}

/* Pantallas muy pequeñas (< 430px) */
@media (max-width: 430px) {

  .hero__title {
    font-size: clamp(2.2rem, 9.5vw, 3rem);
  }

  .section-title {
    font-size: var(--text-xl);
  }

  .btn--lg {
    min-height: 54px;
    padding: 0 1.5rem;
    font-size: var(--text-sm);
  }

  /* Cocktail card — precio e imagen ajustados */
  .cocktail-card__body {
    padding: var(--space-md);
  }
  .cocktail-card__name {
    font-size: var(--text-lg);
  }

  /* Private banner cards — padding reducido */
  .private-banner .grid-3 > div {
    padding: var(--space-md);
  }

  /* Contact links — más espacio táctil */
  .contact-link {
    padding-block: 0.3rem;
    min-height: 44px;
    align-items: center;
  }

  /* Footer bottom — centrado */
  .footer__bottom {
    text-align: center;
  }
  .footer__legal {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* =====================
   VERDE ATLÁNTICO — Teal como acento decorativo/navegacional
   El dorado queda reservado para precios, badges y CTAs
   ===================== */

.section-label               { color: var(--color-teal-light); }
.divider                     { background: var(--color-teal); }
.hero__label                 { color: var(--color-teal-light); }
.hero__label::before         { background: var(--color-teal-light); }
.nav__link::after            { background: var(--color-teal); }
.nav__link:hover             { color: var(--color-text-primary); }
.hours-item--today .hours-item__day { color: var(--color-teal-light); }
.contact-link:hover          { color: var(--color-teal-light); }
.footer__nav-links a:hover   { color: var(--color-teal-light); }

/* Cocktail card: borde teal en hover */
.cocktail-card:hover {
  border-color: var(--color-teal-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), var(--shadow-teal);
}

/* Private banner: borde y glow teal */
.private-banner {
  border-color: var(--color-teal-dark);
}

/* Event card: hover teal */
.event-card:hover {
  border-color: var(--color-teal);
  box-shadow: var(--shadow-teal);
}
