:root {
  --bg: #11100e;
  --panel: #191715;
  --ink: #f6efe5;
  --muted: #c9bbaa;
  --gold: #c49a4a;
  --line: rgba(255,255,255,.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(18px,4vw,52px);
  background: linear-gradient(to bottom,rgba(0,0,0,.72),rgba(0,0,0,.08));
  backdrop-filter: blur(8px);
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  font-size: 30px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .5px;
}

.brand-logo img {
  width: 95px;
  max-height: 50px;
  object-fit: contain;
}

.hero-logo {
  width: clamp(140px,16vw,260px);
  height: auto;
  margin: 0 0 24px;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.45));
}

nav {
  display: flex;
  gap: 22px;
}

nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(80deg,rgba(0,0,0,.88),rgba(0,0,0,.35),rgba(0,0,0,.75));
}

.hero-content {
  position: relative;
  padding: 150px clamp(20px,7vw,90px) 92px;
  max-width: 850px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 14px;
}

.hero h1,
h2 {
  font-family: 'Cormorant Garamond', serif;
  line-height: .95;
  margin: 0;
}

.hero h1 {
  font-size: clamp(64px,11vw,145px);
}

h2 {
  font-size: clamp(38px,6vw,72px);
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  margin: 18px 0 8px;
}

.lead {
  font-size: clamp(19px,2.2vw,27px);
  line-height: 1.38;
  max-width: 720px;
  color: #f6eadc;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  background: rgba(255,255,255,.06);
}

.btn.primary {
  background: var(--gold);
  color: #15100a;
  border-color: var(--gold);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 22px;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: end;
}

.intro p:last-child,
.split p,
.feature-card p,
.contact p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.feature-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 14px;
  overflow: hidden;
}

.feature-card img {
  height: 340px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.feature-card h3,
.feature-card p {
  padding: 0 10px;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: center;
}

.split img {
  border-radius: 28px;
  max-height: 650px;
  width: 100%;
  object-fit: cover;
}

.section-title {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.menu {
  max-width: 1280px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.menu-column {
  background: #f6efe5;
  color: #191715;
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.menu-column h3 {
  color: #1b1712;
  margin-top: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(0,0,0,.13);
  padding: 10px 0;
  font-size: 14.5px;
  line-height: 1.25;
}

.menu-item span:first-child {
  font-weight: 700;
}

.menu-item span:last-child {
  white-space: nowrap;
  color: #7a4e12;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}

.gallery-grid img {
  height: 320px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
}

footer {
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding: 36px 20px;
}

/* SANITARIOS */

.sanitarios {
  max-width: 1280px;
}

.sanitarios-box {
  background: linear-gradient(135deg,#f6efe5,#e7d5b7);
  color: #191715;
  border-radius: 34px;
  padding: clamp(34px,6vw,72px);
  text-align: center;
  box-shadow: 0 35px 90px rgba(0,0,0,.28);
}

.sanitarios-box .eyebrow {
  color: #8b5f15;
}

.discount-badge {
  font-size: clamp(76px,14vw,180px);
  font-weight: 900;
  line-height: .9;
  color: #8b1e1e;
  margin: 20px 0 10px;
}

.sanitarios-box p {
  max-width: 820px;
  margin: 12px auto;
  color: #332820;
  font-size: 19px;
  line-height: 1.65;
}

.sanitarios-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
  margin-top: 34px;
}

.sanitarios-grid div {
  background: #fffaf0;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 20px;
  padding: 20px;
  text-align: left;
}

.sanitarios-grid strong {
  display: block;
  color: #191715;
  margin-bottom: 8px;
}

.sanitarios-grid span {
  display: block;
  color: #5a4a3c;
  font-size: 14px;
  line-height: 1.45;
}

/* FIDELITY */

.fidelity {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  text-align: center;
  max-width: 860px;
}

.fidelity-copy {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(28px,4vw,50px);
}

.fidelity-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.coffee-promo {
  font-size: clamp(54px,8vw,96px);
  line-height: .95;
  font-weight: 900;
  color: var(--gold);
  margin: 20px 0 12px;
}

.fidelity img {
  width: clamp(260px,38vw,360px);
  height: auto;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0,0,0,.35);
}

/* ALÉRGENOS */

.alergenos-box {
  width: 100%;
  text-align: center;
  margin: 20px 0 35px;
}

.hero-alergenos {
  margin-top: 25px;
  max-width: 720px;
}

.carta-alergenos {
  margin-top: -10px;
  margin-bottom: 34px;
}

.alergenos-btn {
  background: var(--gold);
  color: #11100e;
  border: none;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: .3px;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}

.alergenos-btn:hover {
  background: #e0b866;
}

.alergenos-popup {
  display: none;
  background: #f6efe5;
  color: #191715;
  border: 1px solid #c9a66b;
  border-radius: 22px;
  padding: 24px;
  margin: 18px auto 0;
  text-align: left;
  max-width: 720px;
  box-shadow: 0 22px 55px rgba(0,0,0,.35);
}

.alergenos-popup.active {
  display: block;
}

.alergenos-popup h3 {
  margin: 0 0 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: #15110c;
}

.alergenos-popup p {
  color: #332820;
  font-size: 15px;
  line-height: 1.55;
  margin: 10px 0;
}

.alergenos-popup a {
  display: inline-block;
  margin-top: 14px;
  background: #15110c;
  color: #f6efe5;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.alergenos-close {
  float: right;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #15110c;
}

.alergenos-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 18px 0;
}

.alergenos-tags span {
  background: #e7d5b7;
  color: #191715;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .intro,
  .cards,
  .split,
  .menu-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2,1fr);
  }

  nav {
    display: none;
  }

  .hero-content {
    padding-top: 120px;
  }

  .feature-card img {
    height: 260px;
  }

  .sanitarios-grid,
  .fidelity {
    grid-template-columns: 1fr;
  }

  .brand-logo img {
    width: 64px;
  }

  .hero-logo {
    width: 90px;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 62px;
  }

  .section {
    padding: 58px 18px;
  }

  .menu-column {
    padding: 20px;
  }

  .hero {
    min-height: 86vh;
  }

  .alergenos-btn {
    width: 100%;
    max-width: 360px;
  }

  .alergenos-popup {
    width: 100%;
    padding: 20px;
  }

  .alergenos-popup a {
    display: block;
    text-align: center;
    width: 100%;
  }
}
.whatsapp-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}
.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:64px;
  height:64px;
  border-radius:50%;
  background:#25D366;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 25px rgba(0,0,0,.35);
  z-index:9999;
  text-decoration:none;
  transition:.25s;
}

.whatsapp-float:hover{
  transform:scale(1.08);
}

@media (max-width:768px){

  .whatsapp-float{
    width:58px;
    height:58px;
    right:15px;
    bottom:15px;
  }

}