/* ============================================
   HONEY LANE CAFÉ — Main Stylesheet
   ============================================ */

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

/* ---- CSS Variables ---- */
:root {
  --honey:       #F5A623;
  --honey-light: #FBBF47;
  --honey-pale:  #FEF3D0;
  --gold:        #C9902A;
  --amber:       #D4692A;
  --amber-light: #F09052;
  --sky:         #A8D5E2;
  --sky-light:   #D4EEF7;
  --sky-pale:    #EDF6FA;
  --cream:       #FDF8EF;
  --cream-dark:  #F0E4C8;
  --cream-mid:   #F7F0E0;
  --red-soft:    #C45B4A;
  --dark:        #1E0F07;
  --dark-mid:    #4A2E1A;
  --mid-text:    #7A5540;
  --light-text:  #A07860;
  --border:      #E8D5B0;
  --border-light:#F0E5CC;
  --white:       #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --max-width:    1200px;
  --section-pad:  80px;
  --gap:          32px;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(30,15,7,0.08);
  --shadow-hover: 0 8px 40px rgba(30,15,7,0.14);
  --transition:   0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(253, 248, 239, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(30,15,7,0.08);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.8; }

.logo-hex {
  display: inline-block;
  width: 22px; height: 22px;
  background: var(--honey);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex-shrink: 0;
}
.logo-sub  { font-style: italic; font-weight: 400; color: var(--gold); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-mid);
  transition: all var(--transition);
}
.nav-link:hover,
.nav-link.active {
  background: var(--honey-pale);
  color: var(--gold);
}

.nav-link.cta-nav {
  background: var(--honey);
  color: var(--dark);
  font-weight: 600;
}
.nav-link.cta-nav:hover {
  background: var(--gold);
  color: var(--white);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 60px;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,15,7,0.2) 0%,
    rgba(30,15,7,0.65) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 12px;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
}

.page-hero-desc {
  margin-top: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 520px;
}

/* ============================================
   SECTIONS — Layout & Typography
   ============================================ */
.section { padding: var(--section-pad) 24px; }
.section-sm { padding: 48px 24px; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--dark);
}

.section-title em {
  font-style: italic;
  color: var(--amber);
}

.section-subtitle {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--mid-text);
  max-width: 560px;
}

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 16px auto 0; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--honey);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(245,166,35,0.35);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,144,42,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.card-body { padding: 24px; }
.card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.card-text { color: var(--mid-text); font-size: 0.95rem; }
.card-price {
  display: inline-block;
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--amber);
}

/* Grid layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 24px 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition);
}
.social-link:hover { background: var(--honey); color: var(--dark); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--honey); }

.footer-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.fi-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 54px;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all var(--transition);
  animation: pulse-wa 2.5s ease infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
  animation: none;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ============================================
   CHATBOT
   ============================================ */
.chatbot-btn {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--honey);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(245,166,35,0.45);
  transition: all var(--transition);
}
.chatbot-btn:hover {
  background: var(--gold);
  transform: scale(1.08);
}

.chatbot-window {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 998;
  width: 340px;
  max-height: 480px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 60px rgba(30,15,7,0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.chatbot-window.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.chatbot-header {
  background: linear-gradient(135deg, var(--honey), var(--amber));
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chatbot-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.02em;
}
.chatbot-info strong {
  display: block;
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 600;
}
.chatbot-info span {
  font-size: 0.75rem;
  color: rgba(30,15,7,0.6);
}
.chatbot-close {
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--dark-mid);
  opacity: 0.6;
  transition: opacity var(--transition);
}
.chatbot-close:hover { opacity: 1; }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--cream);
}

.chat-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.chat-bubble.bot {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  color: var(--dark);
}
.chat-bubble.user {
  background: var(--honey);
  color: var(--dark);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  font-weight: 500;
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.quick-reply {
  padding: 6px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--honey);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  background: var(--white);
  transition: all var(--transition);
  cursor: pointer;
}
.quick-reply:hover {
  background: var(--honey);
  color: var(--dark);
}

.chatbot-input-row {
  display: flex;
  padding: 12px;
  gap: 8px;
  background: var(--white);
  border-top: 1px solid var(--border-light);
}
.chatbot-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.875rem;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
}
.chatbot-input:focus { border-color: var(--honey); }
.chatbot-send {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--honey);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.chatbot-send:hover { background: var(--gold); color: var(--white); }

/* Typing indicator */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}
.typing-indicator span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--light-text);
  animation: typing 1.2s ease infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-8px); }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   DIVIDER / DECORATIVE
   ============================================ */
.divider {
  width: 56px; height: 3px;
  background: var(--honey);
  border-radius: 2px;
  margin: 16px 0;
}
.divider.centered { margin: 16px auto; }

.hex-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  background: var(--honey-pale);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  font-size: 1.6rem;
  flex-shrink: 0;
}

/* ============================================
   BADGE / TAG
   ============================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.tag-honey { background: var(--honey-pale); color: var(--gold); }
.tag-sky   { background: var(--sky-pale);   color: #3b8aa0; }
.tag-amber { background: #FEE8DC;            color: var(--amber); }

/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-mid);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-honey  { color: var(--honey); }
.text-amber  { color: var(--amber); }
.text-gold   { color: var(--gold); }
.text-mid    { color: var(--mid-text); }

.bg-cream    { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-sky-pale { background: var(--sky-pale); }
.bg-honey-pale { background: var(--honey-pale); }
.bg-dark     { background: var(--dark); }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.gap-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.gap-buttons.centered { justify-content: center; }

/* ============================================
   HERO (Home)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,15,7,0.72) 0%,
    rgba(30,15,7,0.35) 60%,
    rgba(212,105,42,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1.5px;
  background: var(--honey);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--white);
  max-width: 680px;
}
.hero-title em {
  font-style: italic;
  color: var(--honey-light);
}
.hero-subtitle {
  margin-top: 24px;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 460px;
  line-height: 1.65;
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1.5px; height: 48px;
  background: rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.6);
  animation: scroll-down 1.8s ease infinite;
}
@keyframes scroll-down {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ============================================
   DIFERENCIAL CARDS
   ============================================ */
.diferencial-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--white);
  transition: all var(--transition);
}
.diferencial-card:hover {
  border-color: var(--honey);
  box-shadow: 0 8px 32px rgba(245,166,35,0.12);
  transform: translateY(-4px);
}
.diferencial-icon {
  width: 52px; height: 52px;
  background: var(--honey-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.diferencial-icon .icon-label {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}
.diferencial-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.diferencial-text {
  font-size: 0.92rem;
  color: var(--mid-text);
  line-height: 1.65;
}

/* ============================================
   EXPERIENCIA SECTION
   ============================================ */
.experiencia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.experiencia-img-wrap {
  position: relative;
}
.experiencia-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.experiencia-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 45%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-hover);
}
.experiencia-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--honey);
  color: var(--dark);
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 4px 16px rgba(245,166,35,0.4);
}
.experiencia-badge .num { font-size: 1.6rem; }
.experiencia-badge .lbl { font-size: 0.65rem; letter-spacing: 0.05em; text-transform: uppercase; }

.experiencia-quote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--honey);
  background: var(--honey-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.experiencia-quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--dark-mid);
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mid-text);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: all var(--transition);
}
.menu-tab.active,
.menu-tab:hover {
  background: var(--honey);
  color: var(--dark);
  border-color: var(--honey);
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.menu-item:hover {
  border-color: var(--honey);
  box-shadow: 0 4px 16px rgba(245,166,35,0.1);
}
.menu-item-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.menu-item-info { flex: 1; }
.menu-item-name {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}
.menu-item-desc {
  font-size: 0.82rem;
  color: var(--light-text);
  margin-top: 2px;
}
.menu-item-price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--amber);
  flex-shrink: 0;
}

/* ============================================
   TESTIMONIOS
   ============================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 28px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.stars {
  color: #FFB800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 0.93rem;
  color: var(--mid-text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}
.author-source {
  font-size: 0.75rem;
  color: var(--light-text);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
}
.cta-section .section-title { color: var(--white); }
.cta-section .section-subtitle { color: rgba(255,255,255,0.65); margin: 16px auto 0; }

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--honey); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--dark);
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--amber); }

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
  color: var(--gold);
}
.faq-item.open .faq-icon {
  background: var(--honey);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--mid-text);
  line-height: 1.7;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,15,7,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(30,15,7,0.4);
}
.gallery-overlay-icon {
  color: var(--white);
  font-size: 1.8rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
.gallery-item:hover .gallery-overlay-icon {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   MAP
   ============================================ */
.map-section {
  background: var(--cream-dark);
}
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
}
.map-frame iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 46px; height: 46px;
  background: var(--honey-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-text);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
}

/* ============================================
   ABOUT / NOSOTROS
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.value-card:hover {
  border-color: var(--honey);
  box-shadow: 0 8px 24px rgba(245,166,35,0.1);
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.value-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.value-text {
  font-size: 0.88rem;
  color: var(--mid-text);
  line-height: 1.65;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.team-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.team-body { padding: 20px; }
.team-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark);
}
.team-role {
  font-size: 0.82rem;
  color: var(--honey);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ============================================
   STAT BAR
   ============================================ */
.stats-bar {
  background: var(--dark);
  padding: 48px 24px;
}
.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--honey);
  line-height: 1;
}
.stat-label {
  margin-top: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 32px;
    gap: 8px;
    box-shadow: -8px 0 40px rgba(30,15,7,0.12);
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 1000;
  }
  .nav-menu.open { right: 0; }
  .nav-link { font-size: 1.1rem; padding: 12px 0; }

  .nav-toggle { display: flex; }

  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .experiencia-grid { grid-template-columns: 1fr; gap: 40px; }
  .experiencia-img-accent { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide, .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1;
  }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .chatbot-window { width: calc(100vw - 48px); right: 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
}

@media (max-width: 480px) {
  .btn { padding: 12px 22px; font-size: 0.9rem; }
  .btn-lg { padding: 16px 28px; font-size: 0.95rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================
   ACCESSIBILITY — Skip Link
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 10px 20px;
  background: var(--honey);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* ============================================
   ACCESSIBILITY — Focus States
   ============================================ */
:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 3px;
}

.btn:focus-visible,
.nav-link:focus-visible,
.social-link:focus-visible,
.wa-float:focus-visible,
.chatbot-btn:focus-visible,
.quick-reply:focus-visible,
.menu-tab:focus-visible,
.gallery-filter-btn:focus-visible,
.faq-question:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 3px;
}

.form-control:focus-visible,
.chatbot-input:focus-visible {
  outline: none;
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.2);
}

/* ============================================
   TOUCH — Performance & Tap Delay
   ============================================ */
.btn,
.nav-link,
.nav-toggle,
.menu-tab,
.gallery-filter-btn,
.faq-question,
.quick-reply,
.chatbot-btn,
.chatbot-close,
.chatbot-send,
.wa-float,
.social-link,
.gallery-item {
  touch-action: manipulation;
}

/* ============================================
   MOTION — Respect prefers-reduced-motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in {
    opacity: 1;
    transform: none;
  }
  .wa-float { animation: none; }
  .scroll-line::after { animation: none; }
  .typing-indicator span { animation: none; }
}
