:root {
  /* Colores */
  --primary-color: #613317;
  --accent-color: #d1b464;
  --bg-crema: #fdfbf7;
  --bg-cafe-suave: #eae0d5;

  /* Neutros */
  --text: #2b2b2b;
  --muted: #6f6a63;
  --white: #ffffff;

  --radius: 16px;
  --shadow-sm: 0 10px 25px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 18px 45px rgba(0, 0, 0, 0.10);
  --border: 1px solid rgba(97, 51, 23, 0.12);

  --container: 1120px;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: radial-gradient(1200px 500px at 10% 0%, rgba(209,180,100,0.20), transparent 60%),
              linear-gradient(135deg, var(--bg-crema) 0%, var(--bg-cafe-suave) 100%);
}

/* Layout */
.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.section { padding: 70px 0; }

.section-head {
  text-align: center;
  margin-bottom: 28px;
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  color: var(--primary-color);
  letter-spacing: 0.3px;
}

.section-subtitle {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 400;
  max-width: 760px;
  margin-inline: auto;
}

.section-head.compact { margin-bottom: 18px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(253, 251, 247, 0.70);
  border-bottom: 1px solid rgba(97, 51, 23, 0.10);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand { display: inline-flex; align-items: center; }
.main-logo { height: 56px; width: auto; }

/* Nav */
.top-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-nav a {
  font-weight: 600;
  color: rgba(97,51,23,0.88);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(97, 51, 23, 0.10);
  background: rgba(255,255,255,0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.top-nav a:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(209, 180, 100, 0.55);
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  will-change: transform;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(180deg, var(--primary-color), #4f2812);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(97, 51, 23, 0.22);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(97, 51, 23, 0.28);
}

.btn-outline {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(97, 51, 23, 0.18);
  color: rgba(97,51,23,0.92);
  box-shadow: 0 10px 22px rgba(0,0,0,0.05);
}
.btn-outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.10);
  border-color: rgba(209, 180, 100, 0.70);
}

/* Hero */
.hero {
  position: relative;
  padding: 96px 0 70px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 380px at 80% 10%, rgba(209,180,100,0.35), transparent 60%),
    radial-gradient(700px 280px at 15% 25%, rgba(97,51,23,0.14), transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 4.4rem);
  color: var(--primary-color);
  line-height: 1.05;
  letter-spacing: 0.6px;
}

.hero-slogan {
  margin-top: 10px;
  color: rgba(97,51,23,0.85);
  font-weight: 600;
}

.hero-copy {
  margin-top: 22px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(97, 51, 23, 0.10);
  box-shadow: var(--shadow-sm);
  border-radius: calc(var(--radius) + 10px);
  padding: 18px 18px;
  width: min(820px, 100%);
  margin-inline: auto;
}

.hero-headline {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--primary-color);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.hero-text {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 400;
}

.hero-divider {
  width: min(520px, 88%);
  height: 1px;
  margin: 22px auto 18px;
  background: linear-gradient(90deg, transparent, rgba(97, 51, 23, 0.25), transparent);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   MENÚ
   ========================= */
.menu {
  position: relative;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: start;
}

.menu-card {
  grid-column: span 6;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(97, 51, 23, 0.10);
  box-shadow: var(--shadow-sm);
  border-radius: calc(var(--radius) + 6px);
  padding: 18px;
  overflow: hidden;
}

.menu-card-head {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(97, 51, 23, 0.10);
}

.menu-card-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.45rem;
  line-height: 1.2;
}

.menu-card-subtitle {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.95rem;
}

.menu-item {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(97, 51, 23, 0.18);
}

.menu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-item-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: baseline;
}

.menu-item-name {
  font-weight: 700;
  color: rgba(43,43,43,0.95);
}

.menu-item-price {
  font-weight: 800;
  color: rgba(97,51,23,0.92);
  background: rgba(209, 180, 100, 0.20);
  border: 1px solid rgba(209, 180, 100, 0.35);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.menu-item-desc {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.menu-note {
  margin-top: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  background: rgba(209, 180, 100, 0.16);
  border: 1px solid rgba(209, 180, 100, 0.35);
  border-radius: 14px;
  padding: 12px;
}

.menu-note.subtle {
  background: rgba(97, 51, 23, 0.06);
  border-color: rgba(97, 51, 23, 0.12);
}

.menu-note-badge {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--white);
  background: linear-gradient(180deg, var(--primary-color), #4f2812);
  box-shadow: 0 10px 20px rgba(97, 51, 23, 0.18);
}

.menu-note p {
  color: rgba(43,43,43,0.85);
  font-size: 0.95rem;
}

.menu-pills {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  color: rgba(97,51,23,0.92);
  background: rgba(255,255,255,0.60);
  border: 1px solid rgba(97, 51, 23, 0.12);
}

.menu-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.menu-box {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(97, 51, 23, 0.10);
  border-radius: 14px;
  padding: 12px;
}

.menu-mini-title {
  font-weight: 900;
  color: rgba(97,51,23,0.92);
  margin-bottom: 8px;
}

.menu-mini-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(97, 51, 23, 0.16);
  color: rgba(43,43,43,0.90);
}

.menu-mini-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-card-callout {
  grid-column: span 12;
  background: linear-gradient(
    135deg,
    rgba(97, 51, 23, 0.10),
    rgba(209, 180, 100, 0.18)
  );
  border: 1px solid rgba(209, 180, 100, 0.35);
}

.menu-callout-text {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.w-full { width: 100%; }

/* Socios */
.socios-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.socio-card {
  width: 280px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(97, 51, 23, 0.10);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.socio-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.socio-card-inner {
  padding: 26px;
  display: grid;
  place-items: center;
  min-height: 160px;
}

.socio-logo {
  max-width: 180px;
  height: auto;
  filter: saturate(0.98);
}

/* Redes Sociales */
.social-section {
  background: rgba(255,255,255,0.80);
  border-top: 1px solid rgba(97, 51, 23, 0.08);
  border-bottom: 1px solid rgba(97, 51, 23, 0.08);
}

.social-links-bottom {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
}

.social-links-bottom a {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(253, 251, 247, 0.85);
  border: 1px solid rgba(209, 180, 100, 0.35);
  box-shadow: 0 10px 22px rgba(0,0,0,0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.social-links-bottom a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.10);
  border-color: rgba(209, 180, 100, 0.70);
}

.social-links-bottom a img {
  width: 28px;
  height: 28px;
}

/* Contacto + Mapa */
.contacto-container {
  display: grid;
  place-items: center;
}

.contact-card {
  width: min(1050px, 100%);
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(97, 51, 23, 0.12);
  box-shadow: var(--shadow-md);
  border-radius: calc(var(--radius) + 6px);
  padding: 22px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  overflow: hidden;
}

.contact-left {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 8px 6px;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 2rem;
}

.address {
  color: var(--muted);
  font-size: 1.02rem;
}

.btn-whatsapp {
  background: linear-gradient(180deg, #25D366, #1fb85a);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.20);
  font-weight: 800;
  width: fit-content;
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(37, 211, 102, 0.26);
}

.icon { width: 20px; height: 20px; }

.map-wrap {
  border-radius: var(--radius);
  border: 1px solid rgba(97, 51, 23, 0.10);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 320px;
  background: rgba(253, 251, 247, 0.85);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--primary-color), #4f2812);
  color: rgba(255,255,255,0.92);
  padding: 22px 0;
}

.footer-content {
  display: grid;
  gap: 4px;
  text-align: center;
}

.footer-mini {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* =========================
 /* =========================
   COFFEE TIME
   ========================= */

.menu-card-coffee{
  grid-column: span 12;
}

.coffee-brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.coffee-logo{
  width:54px;
  height:54px;
  border-radius:14px;
  background:rgba(255,255,255,0.65);
  border:1px solid rgba(97,51,23,0.10);
  padding:8px;
}

.coffee-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.coffee-item{
  display:grid;
  grid-template-columns:90px 1fr;
  gap:14px;
  align-items:start;
  padding:14px;
  border-radius:16px;
  background:rgba(255,255,255,0.60);
  border:1px solid rgba(97,51,23,0.10);
  box-shadow:0 10px 22px rgba(0,0,0,0.05);
}

.coffee-img{
  width:90px;
  height:90px;
  border-radius:16px;
  overflow:hidden;
  background:rgba(253,251,247,0.9);
  border:1px solid rgba(209,180,100,0.30);
}

.coffee-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.coffee-list{
  margin-top:6px;
  padding-left:18px;
}

/* Tablet */
@media (max-width:980px){

  .coffee-grid{
    grid-template-columns:1fr;
  }

  .coffee-item{
    grid-template-columns:80px 1fr;
  }

  .coffee-img{
    width:80px;
    height:80px;
  }

}

/* Celular */
@media (max-width:520px){

  .coffee-item{
    grid-template-columns:70px 1fr;
    gap:12px;
  }

  .coffee-img{
    width:70px;
    height:70px;
  }

  .coffee-list{
    padding-left:18px;
  }

}

/* Responsive general */
@media (max-width: 980px) {
  .menu-card { grid-column: span 12; }
  .coffee-grid { grid-template-columns: 1fr; }
}

/* Contact responsive */
@media (max-width: 900px) {
  .contact-card { grid-template-columns: 1fr; }
  .btn-whatsapp { width: 100%; justify-content: center; }
  .top-nav { display: none; }
  .menu-split { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto; }
}

/* ✅ Precio Coffee Time estilo "burbuja" como antes */
.coffee-row{
  display: flex;
  justify-content: space-between;
  align-items: center; /* para que no suba/baje raro */
  gap: 12px;
}

.coffee-price{
  font-weight: 900;
  color: rgba(97,51,23,0.92);
  background: rgba(209, 180, 100, 0.20);
  border: 1px solid rgba(209, 180, 100, 0.35);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  flex: 0 0 auto; /* evita que se estire */
  line-height: 1;
}

/* En celular un poquito más compacta pero igual diseño */
@media (max-width: 520px){
  .coffee-price{
    padding: 6px 10px;
    font-size: 0.95rem;
  }
}