/* ==========================================================================
   Bar in Bar Coquetelaria — Landing Page
   Design system: Luxury / Editorial / Coquetelaria Premium
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Julius+Sans+One&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* --------------------------------------------------------------------------
   Branch é uma fonte paga/licenciada e não pode ser embutida automaticamente.
   Quando os arquivos de licença forem fornecidos, adicione-os em /fonts e
   descomente o bloco abaixo. Até lá, Cormorant Garamond atua como substituta
   editorial (fina, elegante, com a mesma sensação de delicadeza serifada).
   -------------------------------------------------------------------------- */
/*
@font-face {
  font-family: 'Branch';
  src: url('fonts/Branch-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*/

:root {
  /* Brand colors */
  --navy-deep: #000312;
  --navy-dark: #010220;
  --navy: #01022E;
  --silver: #636A75;

  --silver-light: #9AA0AA;
  --silver-hairline: rgba(99, 106, 117, 0.35);
  --off-white: #F2F1ED;
  --white: #FBFBF9;

  /* Typography */
  --font-display: 'Branch', 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Julius Sans One', 'Helvetica Neue', Arial, sans-serif;
  --font-read: 'Cormorant Garamond', Georgia, serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
  --space-2xl: 10rem;

  --container-w: 1240px;
  --radius: 2px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 120%; }
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background: var(--navy-deep);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 768px) {
  .container { padding-inline: 3rem; }
}

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-light);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--silver);
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.18;
  color: var(--white);
}

.section-lede {
  font-family: var(--font-read);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--silver-light);
  line-height: 1.65;
  max-width: 640px;
}

.section-head {
  max-width: 780px;
  margin-bottom: var(--space-lg);
}
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head.centered .section-lede { margin-inline: auto; }
.section-head > .eyebrow { margin-bottom: 1.1rem; }
.section-head > .section-title { margin-bottom: 1rem; }

section { position: relative; }

.hairline {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--silver-hairline) 30%, var(--silver-hairline) 70%, transparent);
}

/* --------------------------------------------------------------------------
   Reveal-on-scroll
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(52px) scale(0.97);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal-delay-1.is-visible { transition-delay: 0.1s; }
.reveal-delay-2.is-visible { transition-delay: 0.2s; }
.reveal-delay-3.is-visible { transition-delay: 0.3s; }
.reveal-delay-4.is-visible { transition-delay: 0.4s; }

.reveal-left {
  transform: translateX(-40px);
}
.reveal-left.is-visible { transform: translateX(0); }

/* --------------------------------------------------------------------------
   Buttons / CTAs
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.7rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
  white-space: normal;
  text-align: center;
}
@media (max-width: 767px) {
  .btn { font-size: 0.76rem; }
}

.btn-primary {
  background: var(--off-white);
  color: var(--navy-deep);
  border-color: var(--off-white);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--off-white);
  color: var(--navy-deep);
  border-color: var(--off-white);
  transform: translateY(-2px);
}

.btn-rotating-border {
  position: relative;
  display: inline-block;
  border-radius: 999px;
  padding: 2px;
  overflow: hidden;
}
.btn-rotating-border .btn {
  border-radius: 999px;
}
.btn-rotating-border::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220%;
  height: 220%;
  transform-origin: center center;
  background: conic-gradient(
    transparent 0deg,
    var(--silver-light) 55deg,
    transparent 110deg,
    transparent 180deg,
    var(--silver-light) 235deg,
    transparent 290deg
  );
  animation: rotatingBorder 3s linear infinite;
}
.btn-rotating-border .btn {
  position: relative;
  z-index: 1;
}
@keyframes rotatingBorder {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-rotating-border::before { animation: none; }
}

.btn-outline {
  background: transparent;
  color: var(--off-white);
  border-color: var(--silver-hairline);
}
.btn-outline:hover, .btn-outline:focus-visible {
  border-color: var(--off-white);
  transform: translateY(-2px);
}


.cta-support {
  margin-top: 0.9rem;
  font-family: var(--font-read);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--silver-light);
}
.hero-actions .cta-support {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .hero-actions .cta-support { font-size: 0.88rem; }
}
.final-cta .cta-support {
  font-size: 1.35rem;
}

/* --------------------------------------------------------------------------
   Header / Nav
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: linear-gradient(180deg, rgba(0,3,18,0.92), rgba(0,3,18,0));
  transition: background-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(0, 3, 18, 0.88);
  backdrop-filter: blur(10px);
  padding: 0.7rem 0;
  border-bottom-color: var(--silver-hairline);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand img {
  height: 54px;
  width: auto;
  margin-left: -4px;
  filter: brightness(0) invert(1);
}
.main-nav { display: none; }
@media (min-width: 960px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    font-size: 0.63rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--silver-light);
  }
  .main-nav a { position: relative; padding-bottom: 4px; transition: color 0.3s var(--ease); }
  .main-nav a::after {
    content: '';
    position: absolute; left: 0; right: 100%; bottom: 0;
    height: 1px; background: var(--off-white);
    transition: right 0.4s var(--ease);
  }
  .main-nav a:hover { color: var(--off-white); }
  .main-nav a:hover::after { right: 0; }
}
.header-cta-wrapper { display: none; }
.header-cta { padding: 0.75rem 1.4rem; font-size: 0.6rem; }
@media (min-width: 960px) { .header-cta-wrapper { display: inline-flex; } }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 6rem;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .hero {
    min-height: calc(100vw * 1850 / 1080);
  }
  .hero-media {
    inset: auto;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100vw * 1850 / 1080);
  }
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
@media (max-width: 767px) {
  .hero-media img { object-position: center center; }
}
.hero-media picture, .hero-media img { width: 100%; height: 100%; }
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, var(--navy-deep) 2%, rgba(0,3,18,0.4) 42%, rgba(0,3,18,0.18) 68%),
    linear-gradient(90deg, rgba(0,3,18,0.4) 0%, rgba(0,3,18,0.03) 45%);
}
@media (max-width: 767px) {
  .hero-media::after {
    background: rgba(1, 2, 32, 0.45);
  }
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 2rem;
}
.hero-extra {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .hero-extra {
    background: var(--navy-deep);
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }
}
.hero-content-inner {
  max-width: 600px;
}
@media (max-width: 767px) {
  .hero-content-inner {
    text-shadow: 0 2px 10px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.8);
  }
  .hero-content-inner .btn {
    text-shadow: none;
  }
}
.hero-kicker {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-light);
  margin-bottom: 1.1rem;
  display: block;
}
.hero h1 {
  font-size: clamp(1.65rem, 3.6vw, 2.5rem);
  line-height: 1.16;
  color: var(--white);
  margin-bottom: 1.1rem;
  text-wrap: balance;
}
@media (max-width: 767px) {
  .hero h1 { margin-bottom: 1.8rem; }
}
.hero-text {
  font-family: var(--font-read);
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
  color: var(--off-white);
  max-width: 480px;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .hero-text { margin-bottom: 1.8rem; }
}
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  margin-bottom: 1.8rem;
  padding: 0;
}
.hero-highlights li {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--off-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .hero-highlights li { font-size: 0.98rem; }
}
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 0; margin-bottom: 2rem; }
.hero-actions .btn {
  padding: 0.65rem 1.1rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  gap: 0.5rem;
}
@media (min-width: 480px) {
  .hero-actions .btn { padding: 0.8rem 1.6rem; font-size: 0.72rem; letter-spacing: 0.16em; gap: 0.7rem; }
}
.hero-proof {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 4vw, 1.05rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver-light);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}
.hero-proof .dot { display: none; }
@media (min-width: 640px) {
  .hero-proof {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    gap: 0.5rem 0.7rem;
  }
  .hero-proof .dot { display: inline; }
}
.hero-proof .dot { color: var(--silver); }
.hero-proof .count { font-variant-numeric: tabular-nums; color: var(--white); }
@media (min-width: 768px) {
  .hero { min-height: 100vh; padding-top: 7rem; padding-bottom: 3rem; }
}

/* --------------------------------------------------------------------------
   Experiences
   -------------------------------------------------------------------------- */
.experiences { padding: 4rem 0 var(--space-xl); background: var(--navy-deep); }
.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media (min-width: 860px) {
  .experience-grid { grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
}
.experience-card {
  position: relative;
  border: 1px solid var(--silver-hairline);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
.experience-card:hover { border-color: rgba(242,241,237,0.4); transform: translateY(-6px); }
.experience-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.experience-media img, .experience-media video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.experience-card:hover .experience-media img,
.experience-card:hover .experience-media video { transform: scale(1.045); }
.experience-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,3,18,0.85) 0%, rgba(0,3,18,0.15) 55%, transparent 75%);
}
.experience-body { padding: 1.6rem 1.6rem 1.9rem; flex: 1; display: flex; flex-direction: column; }
.experience-body h3 { font-size: 1.55rem; margin-bottom: 0.85rem; }
.experience-body p { font-family: var(--font-read); font-size: 1rem; color: var(--silver-light); line-height: 1.6; }
.experience-body p + p { margin-top: 0.75rem; }

.experiences-cta { text-align: center; margin-top: var(--space-lg); }

/* --------------------------------------------------------------------------
   Why the bar matters
   -------------------------------------------------------------------------- */
.why-matters {
  padding: var(--space-xl) 0;
  background: var(--navy-dark);
  position: relative;
}
.why-statement {
  max-width: 900px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}
.why-statement .section-title { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 1.5rem; }
.why-statement .section-lede { margin-inline: auto; font-size: clamp(1.05rem, 1.5vw, 1.2rem); }
.why-callout {
  position: relative;
  margin: var(--space-lg) calc(50% - 50vw);
  text-align: center;
  padding: 9rem 1.5rem;
  background:
    linear-gradient(0deg, var(--navy-dark) 0%, rgba(1,2,32,0.78) 45%, rgba(1,2,32,0.78) 100%),
    url("foto1.webp");
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--silver-hairline);
  border-bottom: 1px solid var(--silver-hairline);
}
.why-callout p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--white);
  line-height: 1.45;
  max-width: 760px;
  margin-inline: auto;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: var(--space-lg);
}
@media (min-width: 700px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1080px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}
.why-item {
  background:
    radial-gradient(ellipse at 50% 85%, rgba(19, 83, 115, 0.4), transparent 65%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-dark) 45%, #0a2f47 100%);
  border: 1px solid var(--silver-hairline);
  padding: 1.6rem 1.9rem;
  transition-duration: 1.15s;
}
.why-item:nth-child(2).is-visible { transition-delay: 0.2s; }
.why-item:nth-child(3).is-visible { transition-delay: 0.4s; }
.why-item:nth-child(4).is-visible { transition-delay: 0.6s; }
.why-icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 1.3rem;
  color: var(--silver-light);
  transition: color 0.4s var(--ease);
}
.why-icon svg { width: 100%; height: 100%; }
.why-item:hover .why-icon { color: var(--white); }
.why-item h3 { font-size: 1.4rem; margin-bottom: 0.7rem; }
.why-item p { font-family: var(--font-read); color: var(--silver-light); font-size: 1.1rem; line-height: 1.55; }

.why-cta { text-align: center; margin-top: var(--space-lg); }

/* --------------------------------------------------------------------------
   How it works
   -------------------------------------------------------------------------- */
.how-it-works { padding: var(--space-xl) 0; background: var(--navy-deep); }
.timeline { position: relative; margin: var(--space-lg) auto 0; max-width: 640px; }
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 22px;
  width: 1px;
  background: var(--silver-hairline);
}
.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.4rem;
  padding-bottom: 2.5rem;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-marker {
  width: 44px; height: 44px;
  border: 1px solid var(--silver-hairline);
  background: var(--navy-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  z-index: 1;
}
.timeline-content h3 { font-size: 1.55rem; margin-bottom: 0.65rem; }
.timeline-content p { font-family: var(--font-read); color: var(--silver-light); font-size: 1.2rem; max-width: 520px; }

.how-callout {
  margin-top: var(--space-lg);
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--silver-hairline);
}
.how-callout p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  color: var(--white);
  margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   Testimonials / Gallery
   -------------------------------------------------------------------------- */
.testimonials { padding: var(--space-xl) 0; background: var(--navy-dark); }

.gallery-carousel {
  position: relative;
  margin-bottom: var(--space-lg);
}
.gallery-track {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 0.4rem;
  margin: 0 -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
}
.gallery-track:active { cursor: grabbing; }
.gallery-track::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
  .gallery-track { gap: 1.2rem; margin: 0 -3rem; padding-left: 3rem; padding-right: 3rem; }
}
.gallery-item {
  flex: 0 0 auto;
  width: clamp(200px, 42vw, 300px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--silver-hairline);
}
@media (min-width: 860px) {
  .gallery-item { width: clamp(240px, 22vw, 300px); }
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
  filter: grayscale(0.15);
}
.gallery-item:hover img { transform: scale(1.06); filter: grayscale(0); }


.testimonial-widget {
  position: relative;
  margin-bottom: 2.5rem;
}
.testimonial-widget::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 34px;
  background: var(--navy-dark);
  z-index: 5;
  pointer-events: none;
}

.testimonials-footnote {
  text-align: center;
  font-family: var(--font-read);
  color: var(--silver-light);
  font-size: 1.3rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.testimonials-cta { text-align: center; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq {
  padding: var(--space-xl) 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(99,106,117,0.16), transparent 60%), var(--navy-deep);
}
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--silver-hairline); }
.faq-item:first-child { border-top: 1px solid var(--silver-hairline); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 0.2rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--white);
}
@media (min-width: 640px) { .faq-question { font-size: 1.05rem; } }
.faq-icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--silver-light);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-50%); }
.faq-item.is-open .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-item.is-open .faq-question { color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-answer-inner {
  padding: 0 0.2rem 1.7rem;
  font-family: var(--font-read);
  font-size: 1.22rem;
  color: var(--silver-light);
  max-width: 680px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */
.final-cta {
  padding: 5rem 0;
  position: relative;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(99,106,117,0.16), transparent 60%), var(--navy-deep);
  border-top: 1px solid var(--silver-hairline);
}
@media (min-width: 768px) {
  .final-cta {
    background:
      linear-gradient(0deg, var(--navy-deep) 0%, rgba(0,3,18,0.88) 35%, rgba(0,3,18,0.72) 100%),
      url("bar-in-bar-coquetelaria.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
}
.final-cta .container { max-width: 820px; }
.final-cta h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1.6rem;
}
.final-cta p.lede {
  font-family: var(--font-read);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--silver-light);
  margin-bottom: 0.9rem;
  line-height: 1.65;
}
.final-cta p.instruction {
  font-family: var(--font-read);
  font-style: italic;
  color: var(--off-white);
  margin-bottom: 2.6rem;
}
.final-cta .btn { padding: 1.25rem 2.6rem; font-size: 0.82rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  padding: var(--space-lg) 0 var(--space-md);
  background: var(--navy-deep);
  border-top: 1px solid var(--silver-hairline);
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: var(--space-md);
}
@media (min-width: 760px) {
  .footer-top { flex-direction: row; justify-content: flex-start; align-items: flex-start; gap: 6rem; }
}
.footer-brand img { height: 48px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { font-family: var(--font-read); color: var(--silver-light); max-width: 340px; font-size: 1.02rem; }
.footer-nav-title {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-light);
  margin-bottom: 1.2rem;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-nav a,
.footer-nav span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-light);
  transition: color 0.3s var(--ease);
}
.footer-nav-block:last-of-type .footer-nav a {
  font-weight: 700;
}
@media (max-width: 767px) {
  .footer-brand p { font-size: 1.15rem; }
  .footer-nav-title { font-size: 0.85rem; }
  .footer-nav a,
  .footer-nav span { font-size: 0.9rem; }
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--silver-hairline);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--silver);
}
.footer-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 760px) {
  .footer-bottom-row { flex-direction: row; justify-content: space-between; }
}
.footer-credit { text-align: center; }
.footer-bottom a {
  color: var(--silver-light);
  text-decoration: underline;
  text-decoration-color: var(--silver-hairline);
  text-underline-offset: 3px;
  transition: color 0.3s var(--ease), text-decoration-color 0.3s var(--ease);
}
.footer-bottom a:hover { color: var(--white); text-decoration-color: var(--white); }

/* --------------------------------------------------------------------------
   Floating WhatsApp button
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.whatsapp-float:hover {
  background: #1EBE5A;
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.4);
}
.whatsapp-float .wa-icon {
  width: 30px; height: 30px;
  flex-shrink: 0;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 0C7.16 0 0 7.16 0 16c0 2.82.74 5.47 2.03 7.76L0 32l8.46-2.02A15.9 15.9 0 0 0 16 32c8.84 0 16-7.16 16-16S24.84 0 16 0zm0 29.09c-2.53 0-4.9-.7-6.93-1.92l-.5-.3-5.02 1.2 1.23-4.9-.33-.5A13.06 13.06 0 0 1 2.91 16C2.91 8.78 8.78 2.91 16 2.91S29.09 8.78 29.09 16 23.22 29.09 16 29.09zm7.17-9.8c-.39-.2-2.32-1.15-2.68-1.28-.36-.13-.62-.2-.88.2-.26.39-1.01 1.28-1.24 1.54-.23.26-.46.29-.85.1-.39-.2-1.63-.6-3.11-1.92-1.15-1.03-1.93-2.3-2.15-2.69-.23-.39-.02-.6.17-.79.18-.18.39-.46.59-.7.2-.23.26-.39.39-.66.13-.26.07-.49-.03-.69-.1-.2-.88-2.12-1.2-2.9-.32-.76-.64-.66-.88-.67-.23-.01-.49-.01-.75-.01-.26 0-.69.1-1.05.49-.36.39-1.37 1.34-1.37 3.27s1.4 3.79 1.6 4.05c.2.26 2.76 4.21 6.69 5.9.94.4 1.67.64 2.24.82.94.3 1.8.26 2.48.16.76-.11 2.32-.95 2.65-1.87.33-.92.33-1.71.23-1.87-.1-.16-.36-.26-.75-.46z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 0C7.16 0 0 7.16 0 16c0 2.82.74 5.47 2.03 7.76L0 32l8.46-2.02A15.9 15.9 0 0 0 16 32c8.84 0 16-7.16 16-16S24.84 0 16 0zm0 29.09c-2.53 0-4.9-.7-6.93-1.92l-.5-.3-5.02 1.2 1.23-4.9-.33-.5A13.06 13.06 0 0 1 2.91 16C2.91 8.78 8.78 2.91 16 2.91S29.09 8.78 29.09 16 23.22 29.09 16 29.09zm7.17-9.8c-.39-.2-2.32-1.15-2.68-1.28-.36-.13-.62-.2-.88.2-.26.39-1.01 1.28-1.24 1.54-.23.26-.46.29-.85.1-.39-.2-1.63-.6-3.11-1.92-1.15-1.03-1.93-2.3-2.15-2.69-.23-.39-.02-.6.17-.79.18-.18.39-.46.59-.7.2-.23.26-.39.39-.66.13-.26.07-.49-.03-.69-.1-.2-.88-2.12-1.2-2.9-.32-.76-.64-.66-.88-.67-.23-.01-.49-.01-.75-.01-.26 0-.69.1-1.05.49-.36.39-1.37 1.34-1.37 3.27s1.4 3.79 1.6 4.05c.2.26 2.76 4.21 6.69 5.9.94.4 1.67.64 2.24.82.94.3 1.8.26 2.48.16.76-.11 2.32-.95 2.65-1.87.33-.92.33-1.71.23-1.87-.1-.16-.36-.26-.75-.46z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* --------------------------------------------------------------------------
   Placeholder image note ribbon (dev aid, harmless if photos are swapped in)
   -------------------------------------------------------------------------- */
.img-note {
  position: absolute;
  left: 0; bottom: 0;
  z-index: 2;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--silver-light);
  padding: 0.3rem 0.6rem;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--off-white);
  color: var(--navy-deep);
  padding: 0.8rem 1.2rem;
  z-index: 200;
}
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible {
  outline: 1px solid var(--off-white);
  outline-offset: 3px;
}
