/* ============================================
   RASA Cocktail Bar — Design System
   Colors:
     Background Dark:  #350202
     About Section:    #491B1B
     Accent/Gold:      #FF9810
     Navbar BG:        #1C0404
     Text Light:       #F5EFE6
   Font: Rajdhani (Google Fonts)
============================================ */

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

:root {
  --bg-dark:      #350202;
  --bg-dark-2:    #1C0404;
  --bg-about:     #491B1B;
  --bg-visit:     #3d1010;
  --accent:       #FF9810;
  --accent-light: #FFB347;
  --accent-dark:  #E0840A;
  --text:         #F5EFE6;
  --text-muted:   rgba(245, 239, 230, 0.65);
  --text-dim:     rgba(245, 239, 230, 0.4);
  --border:       rgba(255, 152, 16, 0.2);
  --border-light: rgba(245, 239, 230, 0.1);
  --teal:         #9DCEC2;

  --font: 'Rajdhani', sans-serif;
  --max-w: 1280px;
  --nav-h: 68px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background-color: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark-2); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--bg-dark-2);
  border-bottom: 1px solid rgba(255, 152, 16, 0.08);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.75);
  transition: color 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Instagram icon (navbar) */
.nav-instagram {
  display: flex;
  align-items: center;
  color: #9DCEC2;
  transition: color 0.2s ease;
  
  /* ESPAÇO ENTRE ÍCONE E TEXTO */
  gap: 12px; 
  
  /* ESTILO DO TEXTO */
  text-transform: uppercase; /* Para ficar em maiúsculas como na imagem */
  letter-spacing: 0.15em;    /* Espaço entre as letras */
  font-size: 13px;           /* Ajuste fino do tamanho */
}

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

/* Language switcher */
.nav-lang-wrap {
  position: relative;
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.75);
  transition: color 0.2s ease;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-lang:hover {
  color: var(--text);
}

.lang-chevron {
  transition: transform 0.2s ease;
}

.nav-lang-wrap.open .lang-chevron {
  transform: rotate(180deg);
}

/* Dropdown panel */
.lang-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 110px;
  background: var(--bg-dark-2);
  border: 1px solid rgba(255, 152, 16, 0.18);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}

.nav-lang-wrap.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 16px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.70);
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
}

.lang-option:hover {
  background: rgba(255, 152, 16, 0.10);
  color: var(--text);
}

.lang-option.active {
  color: var(--accent);
}

.lang-flag {
  font-size: 16px;
  line-height: 1;
}

/* View Menu CTA */
.nav-cta {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-dark-2);
  background: var(--accent);
  padding: 10px 22px;
  border-radius: 3px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 152, 16, 0.4);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-dark-2);
  padding: 20px 32px 28px;
  gap: 4px;
  border-top: 1px solid var(--border-light);
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s ease;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: var(--font);
}

.mobile-link:last-of-type {
  border-bottom: 1px solid var(--border-light);
}

.mobile-link:hover { color: var(--text); }
.mobile-lang { color: var(--accent); }

.mobile-cta {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-dark-2);
  background: var(--accent);
  text-align: center;
  padding: 13px 24px;
  border-radius: 3px;
  margin-top: 14px;
  display: block;
}

/* ============================================
   BUTTONS (Global)
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  font-size: 13px;
  padding: 12px 28px;
  background: var(--accent);
  color: var(--bg-dark-2);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 152, 16, 0.4);
}

.btn-outline {
  font-size: 13px;
  padding: 11px 28px;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--bg-dark-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 152, 16, 0.35);
}

/* ============================================
   SECTION LABELS
============================================ */
.section-label {
  display: block;
  font-family: 'Times New Roman', Times, serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--text);
}

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(28, 4, 4, 0.92) 0%,
      rgba(28, 4, 4, 0.72) 38%,
      rgba(28, 4, 4, 0.22) 68%,
      rgba(28, 4, 4, 0.0) 100%
    ),
    linear-gradient(to top,
      rgba(53, 2, 2, 1) 0%,
      rgba(53, 2, 2, 0.55) 20%,
      rgba(53, 2, 2, 0) 48%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 40px 64px;
  max-width: 580px;
}

.hero-logo-wrap {
  margin-bottom: 4px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease 0.1s forwards;
}

.hero-logo {
  height: clamp(56px, 8vw, 90px);
  width: auto;
  object-fit: contain;
  display: block;
}

/* "cocktail bar" subtitle */
.hero-subtitle {
  font-family: var(--font);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
  color: var(--accent);
  margin-bottom: 18px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease 0.25s forwards;
}

/* Tagline */
.hero-tagline {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 36px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease 0.4s forwards;
}

.hero-tagline span {
  font-family: var(--font);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(245, 239, 230, 0.90);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.7s ease 0.55s forwards;
}

/* ============================================
   SELECTION / COCKTAILS
============================================ */
.selection {
  background: var(--bg-dark);
  padding: 96px 0 80px;
}

.selection-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.selection-header {
  text-align: center;
  margin-bottom: 56px;
}

.selection-header .section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.selection-header .section-title {
  font-family: var(--font);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  font-style: normal;
  color: var(--accent);
  letter-spacing: 0.01em;
}

/* 4-column grid */
.cocktail-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cocktail-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.cocktail-card-img {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
}

.cocktail-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}

.cocktail-card:hover .cocktail-card-img img {
  transform: scale(1.06);
}

.cocktail-card-info {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 0 4px;
  gap: 8px;
}

.cocktail-card-name {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  flex: 1;
}

.cocktail-card-price {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  flex-shrink: 0;
  padding-left: 12px;
}

.selection-footer {
  text-align: center;
  margin-top: 48px;
}

.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.2s ease, opacity 0.2s ease;
}

.explore-link:hover {
  gap: 14px;
  opacity: 0.85;
}

/* ============================================
   ABOUT
============================================ */
.about {
  background: var(--bg-about);
  padding: 80px 0 90px;
}

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* EST. 2026 — Times New Roman, teal */
.about-est {
  display: block;
  font-family: 'Times New Roman', Times, serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.about-title {
  font-family: var(--font);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 28px;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(245, 239, 230, 0.80);
}

.about-body p {
  text-align: justify;
}

.about-tagline {
  font-size: 15px !important;
  font-weight: 700 !important;
  font-style: italic;
  color: var(--accent) !important;
  text-align: left !important;
}

/* Instagram follow link — ícone + texto com gap visível */
.about-follow {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  transition: opacity 0.2s ease;
}

.about-follow svg {
  flex-shrink: 0;
}

.about-follow:hover {
  opacity: 0.8;
}

.about-image-col {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.about-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  display: block;
}

/* ============================================
   VISIT
============================================ */
.visit {
  background: var(--bg-dark);
  padding: 90px 0 100px;
}

.visit-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 60px;
}

.visit-header {
  text-align: center;
  margin-bottom: 52px;
}

/* "Where to find us" — Times New Roman, teal */
.visit-label {
  display: block;
  font-family: 'Times New Roman', Times, serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.visit-title {
  font-family: var(--font);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  font-style: normal;
  color: var(--accent);
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.visit-layout {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 56px;
  align-items: stretch;
  min-height: 460px;
}

.visit-info-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}

.visit-info-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 32px;
}

.visit-info-block:last-of-type {
  margin-bottom: 36px;
}

.visit-info-icon {
  flex-shrink: 0;
  width: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--accent);
  padding-top: 3px;
}

.visit-info-content {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.visit-info-label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.visit-info-text {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.75;
}

.visit-link {
  color: var(--text);
  transition: color 0.2s ease;
}

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

.visit-hours {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.visit-hour-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
}

.hour-day {
  color: var(--text);
  white-space: nowrap;
}

.hour-sep {
  color: var(--text-muted);
}

.hour-time {
  color: var(--text);
  white-space: nowrap;
}

.hour-time.closed {
  color: var(--text-muted);
}

.visit-book-btn {
  align-self: flex-start;
  font-size: 13px;
  padding: 13px 32px;
  border-radius: 2px;
  margin-top: 4px;
}

.visit-map-col {
  border-radius: 6px;
  overflow: hidden;
  min-height: 420px;
}

.visit-map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  border: 0;
  border-radius: 6px;
}

/* Mapa mobile — oculto por defeito, visível apenas em mobile */
.visit-map-mobile {
  display: none;
  margin-top: 32px;
  border-radius: 6px;
  overflow: hidden;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 152, 16, 0.12);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 36px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-link {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  transition: opacity 0.2s ease;
}

.footer-link:hover { opacity: 0.7; }

.footer-sep {
  color: var(--accent);
  opacity: 0.4;
  font-size: 14px;
  line-height: 1;
}

.footer-rights {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  width: 100%;
  text-align: center;
  border-top: 1px solid var(--border-light);
  padding: 16px 0 0;
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   RESPONSIVE — 1024px (Tablet landscape)
============================================ */
@media (max-width: 1024px) {
  .cocktail-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-col {
    position: static;
  }

  .visit-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }

  .visit-map-col {
    min-height: 340px;
  }

  .visit-map {
    min-height: 340px;
  }

  .visit-inner {
    padding: 0 40px;
  }
}

/* ============================================
   RESPONSIVE — 768px (Tablet portrait)
============================================ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-container {
    padding: 0 20px;
  }

  .hero-content {
    padding: 0 24px 52px;
    max-width: 100%;
  }

  .selection-inner {
    padding: 0 20px;
  }
  /* Tablet: 2 colunas em grid normal */
  .cocktail-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  /* Tablet: cards voltam ao layout vertical (coluna) */
  .cocktail-card {
    display: flex;
    flex-direction: column;
    border-radius: 2px;
    border-bottom: none;
    border-top: none;
    padding: 0;
    gap: 0;
  }
  .cocktail-card:first-child {
    border-top: none;
  }
  .cocktail-card-img {
    width: auto;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 0;
  }
  .cocktail-card-img img {
    border-radius: 0;
  }
  .cocktail-card-info {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    padding: 16px 0 4px;
    gap: 8px;
  }
  .cocktail-card-name {
    font-size: 13px;
    letter-spacing: 0.14em;
  }
  .cocktail-card-price {
    font-size: 13px;
    color: var(--text-muted);
    padding-left: 12px;
  }
  .selection { padding: 64px 0 48px; }

  .about-inner {
    padding: 0 20px;
  }
  .about { padding: 60px 0; }

  .visit-inner {
    padding: 0 20px;
  }
  .visit { padding: 60px 0; }
  .visit-header { text-align: center; }

  .footer-inner {
    padding: 28px 24px;
    gap: 20px;
  }
  .footer-logo-img { height: 48px; }
  .footer-links { gap: 14px; }
}

/* ============================================
   RESPONSIVE — 480px (Mobile)
============================================ */
@media (max-width: 480px) {

  /* Hero */
  .hero {
    max-height: none;
    min-height: 100svh;
  }
  .hero-content {
    padding: 0 20px 48px;
  }
  .hero-logo {
    height: clamp(48px, 14vw, 72px);
  }
  .hero-subtitle {
    font-size: clamp(22px, 6vw, 32px);
    margin-bottom: 12px;
  }
  .hero-tagline {
    margin-bottom: 28px;
  }
  .hero-tagline span {
    font-size: 15px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 220px;
    justify-content: center;
  }

  /* Selection */
  .selection {
    padding: 52px 0 40px;
  }
  .selection-inner {
    padding: 0 16px;
  }
  .selection-header {
    margin-bottom: 28px;
  }
  .selection-header .section-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  /* Mobile: 1 coluna — cards verticais com imagem grande */
.cocktail-cards {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

.cocktail-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch;
  border-radius: 8px;
  border: none;
  padding: 0;
  gap: 0;
  cursor: pointer;
  background: transparent;
  overflow: hidden;
}

.cocktail-card:first-child {
  border-top: none;
}

/* Imagem full-width em altura generosa */
.cocktail-card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.cocktail-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px 8px 0 0;
  transition: transform 0.4s ease;
}

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

/* Texto abaixo da imagem */
.cocktail-card-info {
  display: flex !important;
  flex-direction: row !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  padding: 12px 4px 4px !important;
  gap: 8px !important;
}

.cocktail-card-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  padding-left: 0;
  line-height: 1.3;
}

.cocktail-card-price {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding-left: 0;
  flex-shrink: 0;
}

/* Linha "Explore full menu" */
.selection-footer {
  margin-top: 16px;
  text-align: center;
}


  /* About */
  .about {
    padding: 52px 0 48px;
  }
  .about-inner {
    padding: 0 16px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-image-col {
    position: static;
    order: 2;
  }
  .about-text-col {
    order: 1;
  }
  .about-title {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 20px;
  }
  .about-body {
    font-size: 15px;
    gap: 12px;
  }
  .about-img {
    aspect-ratio: 4 / 3;
    width: 100%;
  }

  /* Visit */
  .visit {
    padding: 52px 0 48px;
  }
  .visit-inner {
    padding: 0 16px;
  }
  .visit-header {
    text-align: left;
    margin-bottom: 32px;
  }
  .visit-label {
    font-size: 11px;
  }
  .visit-title {
    font-size: clamp(28px, 8vw, 40px);
    font-weight: 600;
  }
  /* Ocultar coluna do mapa no layout grid */
  .visit-map-col {
    display: none;
  }
  /* Mostrar bloco de mapa mobile — ratio 16:9, compatível Android/iOS */
  .visit-map-mobile {
    display: block;
    margin-top: 32px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 60%;
  }

  .visit-map-mobile iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 6px;
  }

  .visit-layout {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
  }
  .visit-info-col {
    padding-top: 0;
  }
  .visit-info-block {
    margin-bottom: 24px;
    gap: 12px;
  }
  .visit-info-text,
  .visit-hour-row {
    font-size: 15px;
  }
  .visit-book-btn {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 16px 24px;
    margin-top: 8px;
  }


  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 20px 32px;
    gap: 20px;
  }
  .footer-logo-wrap {
    justify-content: center;
  }
  .footer-logo-img {
    height: 52px;
  }
  .footer-links {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .footer-rights {
    text-align: center;
  }
}
