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

html {
  zoom: 0.80;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
  position: relative;
}

/* Eliminar CUALQUIER gap entre secciones */
section {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  display: block;
}

/* Asegurar que el hero cubra toda la pantalla */
#inicio {
  position: relative;
  height: 120vh;
  min-height: 120vh;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  top: 0;
  left: 0;
}

:root {
  --background: 32 100% 97%;
  --foreground: 30 26% 9%;
  --coffee-50: #fef7ed;
  --coffee-100: #fdedd3;
  --coffee-200: #fad7a5;
  --coffee-300: #f6ba6d;
  --coffee-400: #f19833;
  --coffee-500: #ed7f0c;
  --coffee-600: #de6607;
  --coffee-700: #b84e09;
  --coffee-800: #943e0e;
  --coffee-900: #78350f;
  --bean-50: #f6f3f0;
  --bean-100: #e8e0d7;
  --bean-200: #d1c0ad;
  --bean-300: #b69a7f;
  --bean-400: #a17c5d;
  --bean-500: #8d664a;
  --bean-600: #74533e;
  --bean-700: #5e4235;
  --bean-800: #503831;
  --bean-900: #46312c;
  --bean-950: #251a16;
}

:root { --navbar-height: 72px; --footer-height: 6rem; }

body {
  font-family:
    ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  background-color: #1a1612;
  background-image: url("images/background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: hsl(var(--foreground));
  line-height: 1.5;
  padding-top: var(--navbar-height);
  zoom: 1;
  overflow-x: hidden;
}

.navbar .container {
  max-width: 1800px;
  margin: 0 auto -3px;
  padding: 4px 16px 2px;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: transparent;
}

.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 20px 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
}

/* Aumentar tamaño de navbar en móviles */
@media (max-width: 768px) {
  html { zoom: 1; overflow-x: hidden; }
  :root { --navbar-height: 72px; }
  .navbar {
    height: var(--navbar-height);
    transform: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    background: #D2691E;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .navbar.scrolled { background: #D2691E; }
  .navbar .container { padding: 8px 12px; min-height: var(--navbar-height); margin: 0 auto; background: transparent !important; display: flex; align-items: center; overflow: hidden; }
  .nav-row { display: flex; grid-template-columns: 1fr auto; align-items: center; justify-content: space-between; height: 100%; }
  .nav-content { padding: 0; gap: 12px; justify-content: flex-end; }
  .nav-column-logo { flex: 1; display: flex; align-items: center; justify-content: center; height: 100%; }
  .logo {
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 !important;
    white-space: nowrap;
    height: auto;
    max-width: 220px;
    overflow: visible !important;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    pointer-events: none;
    border-radius: 0 !important;
  }
  .logo-desktop {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .logo-image {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
  }

  .logo-image-mobile {
    display: block !important;
    visibility: visible !important;
    width: 190px !important;
    height: 50px !important;
    max-width: 220px !important;
    object-fit: contain;
    margin: 0 !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
    border: none !important;
    outline: none !important;
    text-decoration: none !important;
  }
  .logo-text { font-family: 'Georgia', serif; font-size: 1.25rem; letter-spacing: 0.02em; color: #000000; font-weight: 700; overflow: hidden; text-overflow: ellipsis; }
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9998;
  height: var(--navbar-height);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  background: #D2691E;
  backdrop-filter: blur(40px) saturate(250%) brightness(1.2);
  border: none;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  overflow: visible;
}

.navbar.scrolled {
  background: #D2691E;
  backdrop-filter: blur(40px) saturate(250%) brightness(1.2);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* New column-based navbar structure */
.nav-row {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 768px) {
  .nav-row {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    position: relative;
    height: var(--navbar-height);
    justify-content: center;
    padding: 0;
  }
  /* Force wrapper to full width and no centering */
  .navbar .container > div { width: 100% !important; margin: 0 !important; padding: 0 !important; }
  /* Button on far left */
  .nav-column-logo {
    width: auto;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    z-index: 11;
    padding-left: 8px;
  }
  /* Button styles */
  .mobile-menu-button {
    position: relative;
    display: flex !important;
    flex-shrink: 0;
    order: -1;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 8px 14px !important;
    font-size: 24px !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }
  /* Logo link wrapper for mobile */
  .navbar .logo-link {
    position: fixed;
    left: 50%;
    top: 50%;
    height: auto;
    width: auto;
    max-width: 220px;
    transform: translate(-50%, -50%);
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
    color: inherit !important;
    padding: 0;
    margin: 0;
    outline: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 0.15s ease-out;
  }

  .navbar .logo-link:visited {
    color: inherit !important;
  }

  .navbar .logo-link:active {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(0.95);
  }

  .navbar .logo-link.tapped {
    opacity: 0.7 !important;
    transform: translate(-50%, -50%) scale(0.95) !important;
  }

  .navbar .logo-link:focus,
  .navbar .logo-link:hover {
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none;
  }

  /* Logo centered - positioned relative to navbar */
  .navbar .logo {
    position: static;
    left: auto;
    top: auto;
    height: auto;
    width: auto;
    max-width: 220px;
    transform: none;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: none !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    outline: none !important;
    overflow: visible !important;
  }
  /* Links on right */
  .nav-column-links {
    position: absolute;
    right: 12px;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 9;
  }
  .nav-content { justify-content: flex-end !important; gap: 8px; width: auto; }
  .nav-links { display: none !important; }
}

.nav-column-logo {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: auto;
  margin-left: 0;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .nav-column-logo {
    width: auto;
    margin: 0;
    z-index: 11;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    padding-left: 8px;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 0;
  }
}

.nav-column-links {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 100%;
  margin-left: 20px;
  justify-content: center;
}

@media (max-width: 768px) {
  .nav-column-links {
    width: auto;
    margin-left: 0;
    grid-column: 3;
    justify-self: end;
  }
}

.logo {
  display: flex;
  align-items: center;
  border-radius: 24px;
  gap: 11px;
  overflow: hidden;
  position: relative;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  margin: 0;
  padding: 0;
  height: 100%;
  max-height: 72px;
  border: none !important;
  outline: none !important;
}

@media (min-width: 769px) {
  .logo {
    margin: -2px 0 0 -16px;
    padding: 4px 16px;
  }
}

@media (min-width: 769px) {
  .logo-desktop {
    display: flex !important;
  }

  .logo-image-mobile {
    display: none !important;
  }

  .logo-link {
    pointer-events: none;
    position: static;
    transform: none;
    left: auto;
    top: auto;
  }
}

@media (min-width: 1025px) {
  .logo-link {
    margin-left: -12rem;
  }
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 64px;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0 12px;
}

@media (max-width: 800px) {
  .nav-content {
    justify-content: flex-start;
    gap: 16px;
    padding: 0 8px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 0;
  margin-right: auto;
  padding-top: 4px;
}

/* Decorative lines removed */

@media (min-width: 768px) {
  .nav-content {
    justify-content: space-between;
    gap: 2rem;
    padding: 0.9375rem 0;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: -1rem;
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none !important;
  outline: none !important;
}

.logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(222, 102, 7, 0.08) 0%,
    rgba(246, 186, 109, 0.12) 50%,
    rgba(222, 102, 7, 0.06) 100%
  );
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 1.5rem;
}

.logo::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(246, 186, 109, 0.3) 0%,
    transparent 70%
  );
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.logo:hover::before {
  opacity: 1;
}

.logo:hover::after {
  width: 200px;
  height: 200px;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-image {
  width: 56px;
  height: 56px;
  max-width: 500px;
  object-fit: contain;
  border-radius: 0.75rem;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(222, 102, 7, 0.1);
  position: relative;
  z-index: 1;
  border: none !important;
  outline: none !important;
}

.logo:hover .logo-image {
  transform: rotate(2deg) scale(1.02);
  box-shadow:
    0 6px 16px rgba(222, 102, 7, 0.15),
    0 2px 8px rgba(184, 78, 9, 0.1);
}

.logo-text {
  font-family: 'Georgia', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.05em;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.08),
    0 1px 2px rgba(222, 102, 7, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 1;
  text-decoration: none !important;
}

.logo:hover .logo-text {
  transform: translateX(2px);
  text-shadow:
    0 3px 6px rgba(0, 0, 0, 0.12),
    0 2px 4px rgba(222, 102, 7, 0.15);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  text-decoration: none;
  color: hsl(var(--foreground));
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  display: inline-block;
  transform-origin: center;
  padding: 0.75rem 1.5rem;
  border-radius: 1.25rem;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  overflow: hidden;
  cursor: pointer;
  border: none;
}

.nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(222, 102, 7, 0.12) 0%,
    rgba(246, 186, 109, 0.15) 30%,
    rgba(253, 237, 211, 0.08) 60%,
    rgba(222, 102, 7, 0.1) 100%
  );
  border-radius: 1.25rem;
  opacity: 0;
  transform: scale(0.6) rotate(3deg);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--coffee-400) 20%,
    var(--coffee-500) 50%,
    var(--coffee-400) 80%,
    transparent 100%
  );
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow:
    0 2px 8px rgba(222, 102, 7, 0.4),
    0 0 20px rgba(246, 186, 109, 0.3);
}

.nav-links a:hover {
  color: var(--coffee-800);
  transform: translateY(-1px);
  text-shadow: 0 1px 3px rgba(222, 102, 7, 0.2);
}

.nav-links a:hover::before {
  opacity: 0.7;
  transform: scale(1) rotate(0deg);
}

.nav-links a:hover::after {
  width: 80%;
}

.nav-links a:active {
  transform: translateY(0px);
  transition: all 0.1s ease;
}

.contacto-link {
  font-size: inherit !important;
}

.contacto-link h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.contacto-link h4 span {
  font-size: 1.05rem;
}

.contacto-link h6 {
  margin: 0;
  height: 0;
}

/* Desktop-only: ensure nav items align vertically */
@media (min-width: 1024px) {
  .nav-links a { display: inline-flex; align-items: center; }
  .contacto-link h4 { line-height: 1; display: inline-flex; align-items: center; }
  .contacto-link h6 { display: none; }
}

/* Desktop footer compact redesign */
@media (min-width: 1024px) {
  :root { --footer-height: 3rem; }
  .footer { padding: 0.4rem 0; }
  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(139,69,19,0.6), rgba(210,105,30,0.6), rgba(205,133,63,0.6));
  }
  .footer::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(60% 40% at 50% 0%, rgba(246,186,109,0.10), transparent 60%),
      linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  }
  .footer-content { gap: 0.5rem; }
  .vintage-logo-image { width: 5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.25); }
  .footer-logo-image { width: 1.25rem; height: 1.25rem; }
  .footer-logo-text { font-size: 1rem; letter-spacing: 0.02em; line-height: 1.1; }
  .footer-description { display: none; }
}

.nav-separator {
  display: none;
}

.nav-separator::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 15%,
    rgba(246, 186, 109, 0.8) 35%,
    rgba(255, 255, 255, 1) 50%,
    rgba(246, 186, 109, 0.8) 65%,
    rgba(255, 255, 255, 0.4) 85%,
    transparent 100%
  );
  transform: translateX(-50%);
  animation: enhancedShimmer 4s ease-in-out infinite;
  border-radius: 1px;
}

.nav-separator::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  bottom: 10%;
  background: linear-gradient(
    to bottom,
    rgba(222, 102, 7, 0.1) 0%,
    transparent 30%,
    rgba(246, 186, 109, 0.2) 50%,
    transparent 70%,
    rgba(222, 102, 7, 0.1) 100%
  );
  animation: separatorPulse 3s ease-in-out infinite alternate;
  border-radius: 1px;
}

@keyframes enhancedShimmer {
  0%,
  100% {
    transform: translateX(-50%) translateY(-30px);
    opacity: 0.2;
  }
  25% {
    transform: translateX(-50%) translateY(-10px);
    opacity: 0.8;
  }
  50% {
    transform: translateX(-50%) translateY(10px);
    opacity: 1;
  }
  75% {
    transform: translateX(-50%) translateY(30px);
    opacity: 0.8;
  }
}

@keyframes separatorPulse {
  0% {
    opacity: 0.2;
    transform: scaleY(0.8);
  }
  100% {
    opacity: 0.6;
    transform: scaleY(1.1);
  }
}

.nav-separator:hover {
  opacity: 1;
  transform: scaleY(1.1);
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(222, 102, 7, 0.25) 10%,
    rgba(184, 78, 9, 0.6) 25%,
    rgba(37, 26, 22, 1) 40%,
    rgba(222, 102, 7, 0.8) 50%,
    rgba(37, 26, 22, 1) 60%,
    rgba(184, 78, 9, 0.6) 75%,
    rgba(222, 102, 7, 0.25) 90%,
    transparent 100%
  );
  box-shadow:
    0 4px 20px rgba(222, 102, 7, 0.3),
    0 0 15px rgba(246, 186, 109, 0.4),
    inset 1px 0 0 rgba(255, 255, 255, 0.2);
}

.nav-separator:hover::before {
  animation-duration: 2s;
}

.nav-separator:hover::after {
  animation-duration: 1.5s;
}

.nav-links a.clicked {
  animation: navButtonClick 0.3s ease-out;
}

@keyframes navButtonClick {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
    color: var(--coffee-700);
  }
  50% {
    transform: scale(1.05);
    color: var(--coffee-600);
    text-shadow: 0 0 8px rgba(222, 102, 7, 0.3);
  }
  75% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
    color: var(--coffee-600);
  }
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--coffee-600);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a.clicked::after {
  width: 100%;
  animation: underlineGrow 0.4s ease-out;
}

@keyframes underlineGrow {
  0% {
    width: 0;
    opacity: 0;
  }
  50% {
    width: 120%;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

.mobile-menu-button {
  display: none;
  background: transparent;
  border: none;
  color: #000000 !important;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 4px;
  position: relative;
  z-index: 100000;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
  transition: all 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .mobile-menu-button {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #000000 !important;
    margin: 0 !important;
    padding: 8px 14px !important;
    font-size: 24px !important;
    flex-shrink: 0 !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }

  .mobile-menu-button:hover {
    color: #000000 !important;
    background: rgba(0, 0, 0, 0.08) !important;
  }

  .nav-links {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .mobile-menu-button {
    display: none !important;
  }
}

.mobile-menu-button:hover {
  background: rgba(240, 100, 0, 0.1);
  color: var(--coffee-600);
}

/* Clase específica para dispositivos móviles (controlada por JS) */
.touch-device .mobile-menu-button {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.touch-device .nav-links {
  display: none !important;
}

/* Mobile logo adjustments */
@media (max-width: 768px) {
  .logo {
    margin: 0;
    margin-left: 0;
    padding: 4px 8px;
    gap: 6px;
  }

  .logo-image {
    width: 40px;
    height: 40px;
    align-self: center;
    display: block;
  }

  .logo-text {
    font-size: 1.2rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    position: relative;
    top: 2px;
  }
}


.nav-content {
  padding: 0 1rem;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.1rem;
  margin: 1rem 0 2rem;
}

.features-grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-info {
  flex-direction: column;
  text-align: center;
}

.contact-info > div {
  margin-bottom: 1.5rem;
}

.mobile-menu-button:active {
  transform: scale(0.98);
  background: rgba(240, 240, 240, 0.8);
}

/* Mobile menu styles - Drawer lateral moderno y colorido */
.mobile-menu {
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  width: 85vw;
  max-width: 320px;
  height: calc(100vh - var(--navbar-height));
  background: #fef7ed;
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  transition: transform 0.3s ease-out;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  pointer-events: auto;
  transform: translateX(-100%);
  display: flex;
}

.mobile-menu-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

/* Menu visible cuando está activo */
.mobile-menu.active {
  transform: translateX(0);
}

/* Add body overlay when menu is open */
body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 9998;
  pointer-events: auto;
  backdrop-filter: blur(2px);
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Left Panel - Menu */
.menu-left-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fef7ed;
}

/* Menu bottom section */
.menu-bottom-section {
  padding: 12px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

/* Mobile menu navigation */
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
  overflow-y: auto;
}

/* Mobile menu items */
.mobile-menu-item {
  display: block;
  padding: 14px 20px;
  text-decoration: none;
  color: #2C1810;
  transition: all 0.2s ease-out;
  position: relative;
  font-weight: 600;
  font-size: 13px;
  border: none;
  letter-spacing: 0.5px;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-item:last-child {
  border-bottom: none;
}

.mobile-menu-item:hover {
  background: rgba(240, 100, 0, 0.12);
  color: var(--coffee-800);
  padding-left: 32px;
}



/* Menu brand header */
.menu-brand-header {
  text-align: center;
  margin-bottom: 8px;
}

.menu-brand-header h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--coffee-900);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.menu-location {
  margin: 3px 0 0;
  font-size: 11px;
  color: var(--coffee-600);
  letter-spacing: 0.3px;
}

/* Menu divider */
.menu-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--coffee-700), var(--coffee-600), var(--coffee-500));
  margin: 6px auto;
  border-radius: 1px;
}

/* Info section */
.menu-info-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(240, 100, 0, 0.08);
  border-radius: 8px;
  transition: all 0.2s ease-out;
}

.info-item:hover {
  background: rgba(240, 100, 0, 0.12);
}

.info-icon {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-content {
  flex: 1;
  text-align: left;
  line-height: 1.2;
}

.info-label {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  color: var(--coffee-800);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  line-height: 1;
}

.info-text {
  margin: 1px 0 0;
  font-size: 11px;
  color: #2C1810;
  font-weight: 500;
  line-height: 1.2;
}

/* Footer text */
.menu-footer-text {
  margin: 6px 0 0;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--coffee-600);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--coffee-600);
  color: white;
}

.btn-primary:hover {
  background-color: var(--coffee-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(222, 102, 7, 0.25);
}

.btn-outline {
  border: 1px solid var(--coffee-300);
  color: var(--coffee-100);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--coffee-600);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(222, 102, 7, 0.15);
  border-color: var(--coffee-600);
}

.btn-lg {
  padding: 1rem 1.25rem;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 120vh;
  min-height: 120vh;
  width: 100%;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #f4f1e8 0%, #dcc9a8 60%, #dcc9a8 72%, #fef7ed 78%, #fef7ed 100%);
  overflow: visible;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1025px) {
  .hero {
    height: auto;
    min-height: 120vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
  }

  .hero-container {
    height: auto;
    min-height: auto;
  }
}

.hero-left {
  padding-right: 2rem;
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

/* Mover contenido hacia la derecha solo en desktop */
@media (min-width: 1025px) {
  .hero-left {
    margin-left: 8rem;
    padding-left: 1rem;
  }

  .hero-right {
    margin-left: -2rem;
    padding-left: 0;
  }
}

.hero-year {
  font-size: 0.875rem;
  font-weight: 500;
  color: #8B4513;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.hero-year::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 2px;
  background: #D2691E;
}

.hero-main-title {
  font-family: 'Georgia', serif;
  margin-bottom: 2rem;
  padding-top: 2rem;
}

.hero-title-line-1,
.hero-title-line-2 {
  display: block;
  font-size: 5rem;
  font-weight: 700;
  line-height: 0.9;
  color: #2C1810;
  letter-spacing: -0.02em;
}

.hero-title-line-1 {
  margin-bottom: -0.2rem;
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #D2691E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title-line-2 {
  font-size: 5.8rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  color: #5D4037;
  font-weight: 500;
}

.location-dot {
  width: 8px;
  height: 8px;
  background: #D2691E;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-tagline {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #5D4037;
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.hero-btn-primary:hover::before {
  left: 100%;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.btn-arrow {
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.hero-btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-btn-secondary {
  color: #8B4513;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.hero-btn-secondary:hover {
  border-bottom-color: #D2691E;
}

.hero-right {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-120px);
}

.hero-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vintage-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 220px;
  border: 3px solid transparent;
  border-radius: 50%;
  background: linear-gradient(45deg, #8B4513, #D2691E, #CD853F, #8B4513) border-box;
  background-clip: padding-box, border-box;
  animation: rotate 30s linear infinite, subtleGlow 6s ease-in-out infinite alternate;
  z-index: 1;
}

.vintage-frame::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 2px dashed rgba(139, 69, 19, 0.3);
  border-radius: 50%;
  animation: rotate 25s linear infinite reverse;
}

.vintage-logo-container {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoFloat 6s ease-in-out infinite;
}

.vintage-hero-logo {
  width: 280px;
  height: auto;
  max-width: 100%;
  filter: drop-shadow(0 8px 25px rgba(139, 69, 19, 0.3));
  transition: all 0.3s ease;
}

.vintage-hero-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 12px 35px rgba(139, 69, 19, 0.4));
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(210, 105, 30, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
  z-index: -1;
}

.decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.vintage-ornament {
  position: absolute;
  font-size: 1.5rem;
  color: rgba(139, 69, 19, 0.6);
  animation: float 5s ease-in-out infinite;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.vintage-ornament-1 {
  top: 15%;
  right: 20%;
  animation-delay: -1s;
  font-size: 2rem;
}

.vintage-ornament-2 {
  bottom: 20%;
  left: 15%;
  animation-delay: -2s;
  font-size: 1.8rem;
}

.vintage-ornament-3 {
  top: 25%;
  left: 10%;
  animation-delay: -3s;
  font-size: 1.3rem;
}

.vintage-ornament-4 {
  bottom: 15%;
  right: 25%;
  animation-delay: -4s;
  font-size: 1.6rem;
}

.coffee-beans-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(139, 69, 19, 0.05) 2px, transparent 2px),
    radial-gradient(circle at 80% 20%, rgba(210, 105, 30, 0.05) 1.5px, transparent 1.5px),
    radial-gradient(circle at 30% 80%, rgba(139, 69, 19, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 70% 70%, rgba(210, 105, 30, 0.05) 2px, transparent 2px);
  background-size: 60px 60px, 80px 80px, 100px 100px, 120px 120px;
  animation: floatBeans 20s linear infinite;
  z-index: 0;
}

.floating-text {
  position: absolute;
  font-size: 0.875rem;
  font-weight: 600;
  color: #8B4513;
  opacity: 0.8;
  animation: float 4s ease-in-out infinite;
  z-index: 6;
  text-shadow: 0 1px 3px rgba(0,0,0,0.1);
  font-family: 'Georgia', serif;
  letter-spacing: 0.05em;
}

.vintage-text-1 {
  top: 10%;
  right: 5%;
  animation-delay: -1s;
  font-style: italic;
  font-size: 0.9rem;
}

.vintage-text-2 {
  bottom: 10%;
  left: 5%;
  animation-delay: -2s;
  font-style: italic;
  font-size: 0.9rem;
}

.vintage-text-3 {
  top: 50%;
  right: -5%;
  animation-delay: -3s;
  font-size: 0.8rem;
  transform: rotate(90deg);
  transform-origin: center;
}

.hero-decoration-1,
.hero-decoration-2,
.hero-decoration-3,
.hero-decoration-4 {
  position: absolute;
  background: linear-gradient(45deg, rgba(139, 69, 19, 0.1), rgba(210, 105, 30, 0.1));
  border-radius: 50%;
  z-index: 1;
}

.hero-decoration-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  right: 20%;
  animation: float 6s ease-in-out infinite;
}

.hero-decoration-2 {
  width: 100px;
  height: 100px;
  bottom: 15%;
  left: -83px;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-decoration-3 {
  width: 150px;
  height: 150px;
  top: 392px;
  left: 842px;
  animation: float 10s ease-in-out infinite;
}

.hero-decoration-4 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  right: 10%;
  animation: float 7s ease-in-out infinite reverse;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes floatBeans {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-5px) rotate(180deg);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0px) rotate(360deg);
    opacity: 0.3;
  }
}

/* Hero Feature Boxes - Desktop Only */
.hero-features {
  display: none;
}

.feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  border: 1px solid rgba(139, 69, 19, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 160px;
  justify-content: center;
}

.feature-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 69, 19, 0.18);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.feature-title {
  font-size: 1.05rem;
  color: var(--bean-900);
  margin: 0 0 0.6rem 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.feature-description {
  color: var(--bean-700);
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
}

/* Desktop: Display feature boxes */
@media (min-width: 1025px) {
  .hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(139, 69, 19, 0.08);
    grid-column: 1 / -1;
  }

  .hero-left {
    margin-bottom: 0;
  }
}

/* Mobile Logo Styles */
.mobile-vintage-visual {
  display: none;
}

.mobile-vintage-container {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 1.5rem auto 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-vintage-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: linear-gradient(45deg, #8B4513, #D2691E, #CD853F, #8B4513) border-box;
  background-clip: padding-box, border-box;
  animation: rotate 30s linear infinite;
  z-index: -1;
  opacity: 1;
}

.mobile-vintage-logo-container {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
}

.mobile-vintage-logo {
  width: 210px;
  height: auto;
  max-width: 100%;
  filter: drop-shadow(0 8px 25px rgba(139, 69, 19, 0.3));
  margin-left: auto;
  margin-right: auto;
}

.mobile-logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(210, 105, 30, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
  z-index: -1;
}

.mobile-decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.mobile-vintage-ornament {
  position: absolute;
  font-size: 1.2rem;
  color: rgba(139, 69, 19, 0.6);
  animation: float 5s ease-in-out infinite;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mobile-ornament-1 {
  top: 15%;
  right: 20%;
  animation-delay: -1s;
}

.mobile-ornament-2 {
  bottom: 20%;
  left: 15%;
  animation-delay: -2s;
}

.mobile-ornament-3 {
  top: 25%;
  left: 10%;
  animation-delay: -3s;
}

.mobile-ornament-4 {
  bottom: 15%;
  right: 25%;
  animation-delay: -4s;
}

.mobile-floating-text {
  position: absolute;
  font-size: 0.8rem;
  font-weight: 600;
  color: #8B4513;
  opacity: 0.8;
  animation: float 4s ease-in-out infinite;
  z-index: 6;
  text-shadow: 0 1px 3px rgba(0,0,0,0.1);
  font-family: 'Georgia', serif;
  letter-spacing: 0.05em;
  font-style: italic;
}

.mobile-text-1 {
  top: 10%;
  right: 5%;
  animation-delay: -1s;
}

.mobile-text-2 {
  bottom: 10%;
  left: 5%;
  animation-delay: -2s;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 1.5rem;
  }

  .hero-left {
    padding-right: 0;
    order: 1;
    display: flex;
    flex-direction: column;
  }

  .hero-right {
    display: none !important;
  }

  .mobile-vintage-visual {
    display: block !important;
  }

  .hero-location {
    justify-content: flex-start !important;
    text-align: left;
    margin-bottom: 2.5rem !important;
  }

  .hero-main-title {
    padding-top: 0 !important;
    margin-bottom: 0.15rem !important;
  }

  .mobile-floating-text {
    display: none !important;
  }

  .hero-tagline {
    padding-top: 0.5rem !important;
    margin-top: 0 !important;
  }

  .hero {
    height: 120vh !important;
    min-height: 120vh !important;
  }

  .hero-container {
    height: 120vh !important;
    min-height: 120vh !important;
  }

  .hero-title-line-1,
  .hero-title-line-2 {
    font-size: 3.5rem;
    line-height: 0.95;
  }

  .hero-title-line-2 {
    font-size: 4rem;
  }

  .hero-year {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 0.875rem !important;
    color: #8B4513 !important;
    font-weight: 500 !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 0.5rem !important;
    position: relative !important;
    z-index: 10 !important;
    padding-left: 0 !important;
    text-align: center !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
    margin-top: 0 !important;
    width: auto !important;
    height: auto !important;
  }

  .hero-year::before {
    display: none;
  }

  .hero-actions {
    align-items: center;
  }

  .vintage-frame {
    width: 280px;
    height: 280px;
  }

  .vintage-hero-logo {
    width: 250px;
  }

  .logo-glow {
    width: 280px;
    height: 280px;
  }

  .vintage-ornament {
    font-size: 1.2rem;
  }

  .vintage-text-3 {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title-line-1,
  .hero-title-line-2 {
    font-size: 3rem;
    line-height: 0.95;
  }

  .hero-title-line-2 {
    font-size: 3.5rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .hero-btn-primary {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .hero-right {
    height: 250px;
  }

  .vintage-frame {
    width: 220px;
    height: 220px;
  }

  .vintage-hero-logo {
    width: 200px;
  }

  .logo-glow {
    width: 220px;
    height: 220px;
  }

  .vintage-ornament {
    font-size: 1rem;
  }

  .floating-text {
    font-size: 0.75rem;
  }

  .mobile-vintage-container {
    width: 200px;
    height: 200px;
    margin: 1rem auto 1.5rem auto;
  }

  .mobile-vintage-frame {
    width: 200px;
    height: 200px;
  }

  .mobile-vintage-logo {
    width: 180px;
  }

  .mobile-logo-glow {
    width: 200px;
    height: 200px;
  }

  .mobile-vintage-ornament {
    font-size: 1rem;
  }

  .mobile-floating-text {
    display: none !important;
  }

  .hero-main-title {
    padding-top: 0 !important;
    margin-bottom: 0.15rem !important;
  }

  .hero-location {
    margin-bottom: 2rem !important;
  }

  .hero-tagline {
    padding-top: 5rem !important;
  }

  .hero-year {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 0.875rem !important;
    color: #8B4513 !important;
    font-weight: 500 !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 0.5rem !important;
    position: relative !important;
    z-index: 10 !important;
    padding-left: 0 !important;
    text-align: center !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
    margin-top: 0 !important;
    width: auto !important;
    height: auto !important;
  }

  .hero {
    height: 120vh !important;
    min-height: 120vh !important;
  }

  .hero-container {
    height: 120vh !important;
    min-height: 120vh !important;
  }
}



/* Product Section */
.products-section {
  margin: 0 !important;
  margin-top: -2px !important;
  padding: 5rem 0 6rem;
  background-color: var(--coffee-50);
  border: none;
  outline: none;
  position: relative;
  z-index: 1;
  display: block;
  visibility: visible;
  min-height: 600px;
  overflow: hidden;
}

.products-section .container {
  position: relative;
  z-index: 2;
}

/* Forzar que no haya gap entre hero y products */
.hero + .products-section {
  margin-top: -3px !important;
}

/* Products Section Background Pattern */
.products-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(139, 69, 19, 0.3) 3px, transparent 3px),
    radial-gradient(circle at 80% 20%, rgba(210, 105, 30, 0.25) 2px, transparent 2px),
    radial-gradient(circle at 30% 80%, rgba(255, 193, 7, 0.2) 2px, transparent 2px),
    radial-gradient(circle at 70% 70%, rgba(210, 105, 30, 0.2) 3px, transparent 3px);
  background-size: 80px 80px, 120px 120px, 100px 100px, 150px 150px;
  background-position: 0 0, 40px 40px, 80px 80px, 120px 120px;
  animation: patternFloat 25s linear infinite;
  z-index: 0;
  pointer-events: none;
}

/* Animación simple para sección de productos */
.products-section .section-header,
.products-section .product-card {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out;
}

.products-section .section-header.animate-in,
.products-section .product-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}



.section-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Badges modernos para secciones */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0 auto;
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #CD853F 100%);
  color: white;
  border: none;
  box-shadow:
    0 4px 15px rgba(139, 69, 19, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  text-transform: none;
  letter-spacing: 0.1em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  min-width: 140px;
}

.badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.badge:hover::before {
  left: 100%;
}

.badge:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 8px 25px rgba(139, 69, 19, 0.4),
    0 3px 10px rgba(0, 0, 0, 0.3);
}

.badge::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: translateY(-50%);
  opacity: 0.6;
}

.section-badge {
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #CD853F 100%);
  position: relative;
}

.section-badge::before {
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}

.section-badge:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 8px 25px rgba(139, 69, 19, 0.4),
    0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Animación sutil para badges */
@keyframes badgePulse {
  0%, 100% {
    box-shadow:
      0 4px 15px rgba(139, 69, 19, 0.3),
      0 1px 3px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow:
      0 6px 20px rgba(139, 69, 19, 0.4),
      0 2px 8px rgba(0, 0, 0, 0.3);
  }
}

.badge {
  animation: badgePulse 3s ease-in-out infinite;
}

/* Animaciones de entrada para sección INICIO - SOLO DESKTOP */
@media (min-width: 769px) {
  @keyframes slideInFromLeft {
    0% {
      transform: translateX(-200px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes slideInFromRight {
    0% {
      transform: translateX(200px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  /* Animaciones para elementos de la izquierda - todos al mismo tiempo */
  .hero-year {
    animation: slideInFromLeft 1.5s ease-out 0.5s both;
  }

  .hero-main-title {
    animation: slideInFromLeft 1.5s ease-out 0.5s both;
  }

  .hero-location {
    animation: slideInFromLeft 1.5s ease-out 0.5s both;
  }

  .mobile-vintage-visual {
    animation: slideInFromLeft 1.5s ease-out 0.5s both;
  }

  .hero-tagline {
    animation: slideInFromLeft 1.5s ease-out 0.5s both;
  }

  .hero-actions {
    animation: slideInFromLeft 1.5s ease-out 0.5s both;
  }

  /* Animaciones para elementos de la derecha - todos al mismo tiempo */
  .hero-right {
    animation: slideInFromRight 1.5s ease-out 0.7s both, logoFloat 4s ease-in-out 2.2s infinite;
  }

  .vintage-frame {
    animation: slideInFromRight 1.5s ease-out 0.7s both, logoFloat 4s ease-in-out 2.3s infinite;
  }

  .vintage-logo-container {
    animation: slideInFromRight 1.5s ease-out 0.7s both, logoFloat 4s ease-in-out 2.4s infinite;
  }
}

.decorative-elements {
  animation: slideInFromRight 1.5s ease-out 0.7s both;
}

.floating-text {
  animation: slideInFromRight 1.5s ease-out 0.7s both;
}

.hero-decoration-1 {
  animation: slideInFromLeft 1.5s ease-out 0.5s both, logoFloat 4s ease-in-out 2.6s infinite;
}

.hero-decoration-2 {
  animation: slideInFromLeft 1.5s ease-out 0.5s both;
}

.hero-decoration-3 {
  animation: slideInFromLeft 1.5s ease-out 0.5s both, logoFloat 4s ease-in-out 2.7s infinite;
}

.hero-decoration-4 {
  animation: slideInFromLeft 1.5s ease-out 0.5s both, logoFloat 4s ease-in-out 2.8s infinite;
}

/* Floating Coffee Beans */
.floating-beans {
  position: absolute;
  top: 12px;
  left: 37px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.coffee-bean {
  position: absolute;
  font-size: 20px;
  opacity: 0.6;
  animation: floatBeans 15s infinite linear;
}

.bean-1 {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.bean-2 {
  left: 25%;
  animation-delay: -3s;
  animation-duration: 16s;
}

.bean-4 {
  left: 75%;
  animation-delay: -9s;
  animation-duration: 18s;
}

@keyframes floatBeans {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-10vh) rotate(360deg);
    opacity: 0;
  }
}

/* Sparkle Animation Effect */
.steam-container {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  pointer-events: none;
  z-index: 3;
}

.sparkle {
  position: absolute;
  font-size: 18px;
  color: #D4AF37;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  animation: sparkleFloat 4s infinite ease-in-out;
}

.sparkle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 3.5s;
}

.sparkle-2 {
  top: 50%;
  left: 70%;
  animation-delay: -1s;
  animation-duration: 4.2s;
}

.sparkle-3 {
  top: 70%;
  left: 30%;
  animation-delay: -2s;
  animation-duration: 3.8s;
}

.sparkle-4 {
  top: 30%;
  left: 85%;
  animation-delay: -3s;
  animation-duration: 4.5s;
}

@keyframes sparkleFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(0.8);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-15px) rotate(90deg) scale(1.2);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-25px) rotate(180deg) scale(1);
    opacity: 1;
  }
  75% {
    transform: translateY(-15px) rotate(270deg) scale(1.1);
    opacity: 0.6;
  }
}

@keyframes subtleGlow {
  0% {
    box-shadow: 0 0 20px rgba(139, 69, 19, 0.3);
  }
  100% {
    box-shadow: 0 0 40px rgba(210, 105, 30, 0.5), 0 0 60px rgba(139, 69, 19, 0.2);
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
}

/* Hide enhancements on mobile */
@media (max-width: 768px) {
  .floating-beans,
  .steam-container {
    display: none;
  }
}

/* Mobile responsive styles */
@media (max-width: 640px) {
  .hero-main-title span:first-child {
    font-size: 55px !important;
  }

  .hero-main-title span:last-child {
    font-size: 55px !important;
  }

  .hero-location {
    margin-top: 8px;
  }

  .about-text p {
    font-size: 15px !important;
  }

  .about-text p:last-child {
    display: none;
  }

  .vintage-logo-image {
    margin-top: 15px;
  }

  /* NOSOTROS section mobile layout */
  .about-grid > div:first-child {
    display: flex;
    flex-direction: column;
  }

  .badge {
    margin: 0 auto 24px !important;
  }
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--bean-900);
  margin: 0;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .section-header {
    gap: 1.25rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section-header {
    gap: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .products-section {
    padding: 4rem 0 5rem !important;
  }
}

.section-description {
  font-size: 1.25rem;
  color: var(--bean-700);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

.products-container {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.products-grid-single {
  display: none;
}

/* Primera fila: 3 productos */
.products-grid-row-1 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  justify-items: center;
  margin-bottom: 2rem;
}

/* Segunda fila: 2 productos */
.products-grid-row-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  justify-items: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .products-grid-single {
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 95%;
    margin: 0 auto;
  }

  /* Primera fila: 3 productos en desktop */
  .products-grid-row-1 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 80%;
    margin: 0 auto 3rem auto;
    justify-items: center;
  }

  /* Segunda fila: 2 productos centrados en desktop */
  .products-grid-row-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 60%;
    margin: 0 auto 2rem auto;
    justify-items: center;
  }
}

@media (min-width: 1024px) {
  .products-grid-single {
    gap: 2.5rem;
    max-width: 90%;
  }

  /* Primera fila: 3 productos con más espacio */
  .products-grid-row-1 {
    gap: 2.5rem;
    max-width: 75%;
  }

  /* Segunda fila: 2 productos con más espacio */
  .products-grid-row-2 {
    gap: 2.5rem;
    max-width: 55%;
  }
}

.product-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.6s ease-out;
  border: none;
  height: 400px;
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateY(0);
  width: 100%;
  max-width: 300px;
}



@media (max-width: 768px) {
  .product-card {
    height: 220px;
    width: 75%;
    margin: 0 auto;
    max-width: 250px;
  }

  .products-grid-single {
    justify-items: center;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .product-card {
    height: 350px;
    max-width: 280px;
  }

  .product-content {
    padding: 0.8rem;
  }

  .product-name {
    font-size: 1rem;
    text-align: center;
  }

  .product-price {
    font-size: 1.2rem;
    text-align: center;
  }

  .product-description {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 13rem;
}

@media (max-width: 768px) {
  .product-image {
    height: 7rem;
  }
}

@media (min-width: 768px) {
  .product-image {
    height: 11rem;
  }
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.03);
}

.product-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--coffee-600);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .product-content {
    padding: 0.5rem;
  }
}

.product-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bean-900);
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--coffee-600);
  margin-bottom: 0.75rem;
  text-align: center;
}

.product-description {
  color: var(--bean-700);
  margin-bottom: 1rem;
}

/* About Section */
.about-section {
  background: linear-gradient(
    to bottom right,
    var(--bean-900),
    var(--coffee-900)
  );
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 30px 0 0 0;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(246, 186, 109, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(222, 102, 7, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  padding: 30px 0;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  align-items: center;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}

.about-section .badge {
  position: static;
  transform: none;
  z-index: 1;
  margin: 0;
  padding: 12px 24px;
  align-self: center;
}

.about-title-decoration {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--coffee-300), transparent);
  margin: 0.5rem 0;
}

.about-title {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  margin-bottom: 0.3rem;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  text-align: center;
  position: relative;
}

.about-text-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.about-text {
  font-size: 17px;
  line-height: 1.55;
  color: var(--coffee-200);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 0;
  text-align: center;
}

.about-text p {
  margin: 0;
  text-align: center;
}

.about-text strong {
  color: var(--coffee-300);
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(246, 186, 109, 0.3);
  border-bottom: 1px solid rgba(246, 186, 109, 0.3);
  width: 100%;
  position: relative;
}

.stat {
  text-align: center;
  padding: 0;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: default;
}

.stat:hover {
  background: transparent;
  transform: none;
  box-shadow: none;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--coffee-300);
  margin-bottom: 0.35rem;
  display: block;
}

.stat-label {
  color: var(--coffee-200);
  font-size: 0.75rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.about-values-section {
  width: 100%;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(246, 186, 109, 0.2);
  background: linear-gradient(to bottom, transparent, rgba(70, 49, 44, 0.3));
}

.values-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--coffee-300);
  margin: 0 0 1rem 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
  padding: 1.2rem 0.9rem;
  background: rgba(246, 186, 109, 0.08);
  border-radius: 6px;
  border-top: 2px solid var(--coffee-300);
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(246, 186, 109, 0.12);
  transform: translateY(-2px);
}

.value-icon {
  font-size: 1.6rem;
  color: var(--coffee-300);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.value-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 0.3rem 0;
}

.value-content p {
  font-size: 1.05rem;
  color: var(--coffee-200);
  margin: 0;
  line-height: 1.4;
}

.about-cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0 0;
  width: 100%;
}

.about-cta .btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about-cta .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-cta .btn:hover::before {
  opacity: 1;
}

.about-image-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: center;
}

.about-image-container::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(246, 186, 109, 0.2), rgba(222, 102, 7, 0.15));
  filter: blur(12px);
  z-index: 5;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(246, 186, 109, 0.3);
}

.carousel-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: brightness(1.1) contrast(1.05);
}

.carousel-image.active {
  opacity: 1;
}

.carousel-nav {
  display: none;
}

.carousel-nav-prev {
  left: 1rem;
}

.carousel-nav-next {
  right: 1rem;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem 0;
  flex-wrap: wrap;
}

.carousel-indicator {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(246, 186, 109, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: rgba(246, 186, 109, 0.95);
  width: 40px;
}

.about-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 0;
  min-height: 0;
  background-color: rgba(222, 102, 7, 0.2);
  border-radius: 1rem;
  z-index: 8;
  bottom: 0;
}

@media (max-width: 768px) {
  .about-section {
    padding: 1.5rem 0 0 0;
  }

  .about-section .container,
  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem 1rem;
  }

  .about-content {
    max-width: 100%;
    gap: 1rem;
  }

  .carousel-wrapper {
    max-width: 420px;
  }

  .carousel-track {
    border-radius: 0.875rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  }

  .carousel-indicator {
    width: 24px;
    height: 3px;
  }

  .carousel-indicator.active {
    width: 35px;
  }

  .carousel-indicators {
    padding: 1.25rem 1rem 0;
    gap: 0.625rem;
  }

  .about-title {
    font-size: 1.65rem;
    margin-bottom: 0.2rem;
  }

  .about-title-decoration {
    width: 50px;
    margin: 0.3rem 0;
  }

  .about-text-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
  }

  .about-text {
    font-size: 0.9rem;
    gap: 0.5rem;
    line-height: 1.5;
  }

  .stats-grid {
    gap: 1rem;
    padding: 1rem 0;
    margin: 0.5rem 0;
  }

  .stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .about-values-section {
    padding: 1.5rem 1rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .value-item {
    padding: 1rem 0.75rem;
    gap: 0.4rem;
  }

  .values-title {
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }

  .value-icon {
    font-size: 1.5rem;
  }

  .value-content h4 {
    font-size: 1.1rem;
  }

  .value-content p {
    font-size: 1rem;
  }

  .about-cta {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
    max-width: 350px;
  }

  .about-cta .btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
  }

  .about-image-container::before {
    inset: -8px;
    filter: blur(10px);
  }
}

@media (max-width: 480px) {
  .about-section {
    min-height: auto;
    padding: 1.25rem 0 0 0;
  }

  .about-section .container,
  .about-container {
    padding: 1rem 0.875rem;
    gap: 1.5rem;
  }

  .about-content {
    gap: 0.9rem;
  }

  .about-title {
    font-size: 1.6rem;
    margin-bottom: 0.15rem;
  }

  .about-title-decoration {
    width: 45px;
    margin: 0.25rem 0;
  }

  .about-text-wrapper {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .about-text {
    font-size: 0.85rem;
    gap: 0.4rem;
    line-height: 1.45;
  }

  .stats-grid {
    gap: 0.75rem;
    padding: 0.875rem 0;
    margin: 0.5rem 0;
  }

  .stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .about-values-section {
    padding: 1rem 0.875rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .value-item {
    padding: 0.8rem 0.6rem;
    gap: 0.3rem;
  }

  .values-title {
    font-size: 1.05rem;
    margin-bottom: 0.85rem;
  }

  .value-icon {
    font-size: 1.4rem;
  }

  .value-content h4 {
    font-size: 1.05rem;
  }

  .value-content p {
    font-size: 0.95rem;
  }

  .about-cta {
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 0.8rem;
    max-width: 280px;
  }

  .about-cta .btn {
    width: 100%;
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
  }

  .about-image-container::before {
    inset: -6px;
    filter: blur(8px);
  }

  .carousel-wrapper {
    max-width: 280px;
  }

  .carousel-track {
    border-radius: 0.75rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }

  .carousel-nav {
    padding: 0.6rem;
  }

  .carousel-nav:hover {
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
    transform: translateY(-50%) scale(1.08);
  }

  .carousel-nav svg {
    width: 16px;
    height: 16px;
  }

  .carousel-indicators {
    padding: 1rem 0.75rem 0;
    gap: 0.5rem;
  }

  .carousel-indicator {
    width: 20px;
    height: 3px;
  }

  .carousel-indicator.active {
    width: 30px;
  }

  .carousel-nav-prev {
    left: 0.5rem;
  }

  .carousel-nav-next {
    right: 0.5rem;
  }

  .carousel-indicators {
    padding: 1rem 0.75rem 0;
    gap: 0.6rem;
  }

  .carousel-indicator {
    width: 20px;
    height: 3px;
  }

  .carousel-indicator.active {
    width: 30px;
  }
}

/* Cleanup unused classes */
.timeline,
.timeline-item,
.timeline-dot,
.timeline-content,
.about-header,
.about-featured-image,
.about-image-wrapper,
.about-content-wrapper,
.about-text-block,
.about-description,
.about-highlights,
.highlight-stat,
.highlight-number,
.highlight-label,
.about-decoration,
.about-decoration-1,
.about-decoration-2,
.about-decoration-3,
.about-decoration-4,
.about-logo {
  display: none !important;
}

/* Contact Section */
.contact-section {
  padding: 3rem 0 6rem 0;
  background-color: var(--coffee-50);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}

/* Contact Grid Wrapper - 2 Columns */
.contact-grid-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr;
  gap: 2rem;
  max-width: 1600px;
  margin: 0 auto;
  align-items: stretch;
}

/* Gallery Section - Left Column */
.contact-gallery {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.gallery-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  flex-direction: column;
}

.gallery-slide.active {
  opacity: 1;
  z-index: 1;
}

.gallery-slide img {
  width: 100%;
  height: 80%;
  object-fit: cover;
}

.gallery-slide h4,
.gallery-slide p {
  background: linear-gradient(135deg, rgba(240, 100, 0, 0.95), rgba(222, 102, 7, 0.95));
  color: #ffffff;
  margin: 0;
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  text-align: center;
}

.gallery-slide h4 {
  padding-bottom: 0.4rem;
  font-weight: 700;
}

.gallery-slide p {
  padding-top: 0.4rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Gallery Navigation Dots */
.gallery-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ffffff;
  width: 32px;
  border-radius: 6px;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Contact Cards Vertical - Right Column */
.contact-cards-vertical {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  justify-content: space-between;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .contact-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-gallery {
    height: 400px;
  }
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-gallery {
    height: 550px;
  }

  .contact-grid-wrapper {
    grid-template-columns: 1.5fr 0.85fr;
    gap: 2.5rem;
  }

  .contact-grid {
    gap: 3rem;
  }
  /* Contact section padding */
  .contact-section {
    padding-bottom: 3rem;
  }
  .footer {
    margin-top: 0;
  }
}

@media (min-width: 1400px) {
  .contact-gallery {
    height: 600px;
  }

  .contact-grid-wrapper {
    grid-template-columns: 1.5fr 0.85fr;
    gap: 3rem;
  }
}

.contact-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 1.2rem;
  padding: 1.5rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(139, 69, 19, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: auto;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8B4513, #D2691E, #CD853F);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(139, 69, 19, 0.15);
  background: rgba(255, 255, 255, 1);
}

.contact-card:hover::before {
  opacity: 1;
}

@media (max-width: 1024px) {
  .contact-card {
    height: 170px;
    padding: 1.25rem 0.75rem;
  }
}

@media (max-width: 768px) {
  .contact-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .contact-gallery {
    height: 400px;
    width: 100%;
    margin-bottom: 1rem;
  }

  .gallery-slide {
    display: flex;
    flex-direction: column;
  }

  .gallery-slide img {
    width: 100%;
    height: 70%;
    object-fit: cover;
  }

  .gallery-slide h4,
  .gallery-slide p {
    font-size: 0.9rem;
    padding: 0.6rem;
  }

  .contact-cards-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
  }

  .contact-card {
    padding: 1.2rem 1rem;
    border-radius: 0.75rem;
    width: 100%;
    margin: 0;
    height: auto;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.6rem;
  }

  .contact-card:last-child {
    margin-bottom: 0;
  }

  .contact-icon {
    width: 3rem !important;
    height: 3rem !important;
    margin: 0 auto 0.8rem !important;
    padding: 0.6rem !important;
    color: #8B4513 !important;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.15), rgba(210, 105, 30, 0.1)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .contact-icon path,
  .contact-icon circle,
  .contact-icon polyline {
    stroke: #8B4513 !important;
    fill: none !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }

  .contact-icon-emoji {
    width: 3rem !important;
    height: 3rem !important;
    margin: 0 auto 0.8rem !important;
    padding: 0.6rem !important;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.15), rgba(210, 105, 30, 0.1)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    font-size: 1.6rem !important;
  }

  .contact-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }

  .contact-info {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
  }

  .contact-grid {
    display: none;
  }
}

.contact-icon {
  width: 4rem;
  height: 4rem;
  color: #8B4513;
  margin: 0 auto 1rem;
  padding: 0.75rem;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.12), rgba(210, 105, 30, 0.12));
  border-radius: 50%;
  transition: all 0.3s ease;
  display: block;
  box-sizing: border-box;
  flex-shrink: 0;
}

.contact-icon path,
.contact-icon circle,
.contact-icon polyline {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon-emoji {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  padding: 0.75rem;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.12), rgba(210, 105, 30, 0.12));
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(210, 105, 30, 0.2));
  color: #D2691E;
  stroke: currentColor;
}

.contact-card:hover .contact-icon-emoji {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(210, 105, 30, 0.2));
}

.contact-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2C1810;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.contact-info {
  color: #5D4037;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-buttons {
  text-align: center;
  margin-top: 3rem;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-social {
  padding: 0.5rem;
  border: 1px solid var(--coffee-300);
  color: var(--coffee-700);
  background: transparent;
  border-radius: 0.5rem;
}

.btn-social:hover {
  background-color: var(--coffee-600);
  color: white;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 3px 8px rgba(222, 102, 7, 0.2);
  border-color: var(--coffee-600);
}

/* Estilo específico para EST. 1963 visible en móviles */
@media (max-width: 1024px) {
  .hero-year[style*="order: 1"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 0.9rem !important;
    color: #2C1810 !important;
    font-weight: 600 !important;
    letter-spacing: 0.15em !important;
    margin-bottom: 0.5rem !important;
    position: relative !important;
    z-index: 999 !important;
    padding: 0.4rem 1rem !important;
    text-align: center !important;
    background: rgba(244, 164, 96, 0.3) !important;
    border: 1px solid #8B4513 !important;
    border-radius: 12px !important;
    width: fit-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 0.5rem !important;
    min-height: 25px !important;
    line-height: 1.3 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  }
}

/* C����rculos decorativos para todas las secciones */
.section-decoration,
.about-decoration,
.contact-decoration,
.footer-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
  background: linear-gradient(135deg,
    rgba(244, 241, 232, 0.4) 0%,
    rgba(237, 230, 211, 0.3) 50%,
    rgba(240, 233, 216, 0.4) 100%);
}

/* Products Section Decorations */
.products-section {
  position: relative;
  overflow: hidden;
}

.section-decoration-1 {
  width: 140px;
  height: 140px;
  top: 8%;
  left: 5%;
  background: linear-gradient(135deg,
    rgba(139, 69, 19, 0.4) 0%,
    rgba(210, 105, 30, 0.35) 50%,
    rgba(255, 193, 7, 0.3) 100%);
  box-shadow: 0 12px 40px rgba(139, 69, 19, 0.2);
  backdrop-filter: blur(3px);
  border-radius: 50%;
  position: absolute;
}

.section-decoration-2 {
  width: 110px;
  height: 110px;
  bottom: 10%;
  right: 8%;
  background: linear-gradient(135deg,
    rgba(210, 105, 30, 0.45) 0%,
    rgba(255, 152, 0, 0.35) 50%,
    rgba(139, 69, 19, 0.3) 100%);
  box-shadow: 0 8px 32px rgba(210, 105, 30, 0.25);
  backdrop-filter: blur(3px);
  border-radius: 50%;
  position: absolute;
}

.section-decoration-3 {
  width: 85px;
  height: 85px;
  top: 59px;
  left: -228px;
  background: linear-gradient(135deg,
    rgba(255, 193, 7, 0.4) 0%,
    rgba(139, 69, 19, 0.35) 50%,
    rgba(210, 105, 30, 0.3) 100%);
  box-shadow: 0 6px 24px rgba(255, 193, 7, 0.2);
  backdrop-filter: blur(2px);
  border-radius: 50%;
  position: absolute;
}

.section-decoration-4 {
  width: 60px;
  height: 60px;
  top: 50%;
  right: 5%;
  background: linear-gradient(135deg,
    rgba(210, 105, 30, 0.5) 0%,
    rgba(255, 152, 0, 0.4) 100%);
  box-shadow: 0 5px 20px rgba(210, 105, 30, 0.2);
  backdrop-filter: blur(2px);
  border-radius: 50%;
  position: absolute;
}

.section-decoration-5 {
  width: 95px;
  height: 95px;
  bottom: 15%;
  left: 3%;
  background: linear-gradient(135deg,
    rgba(139, 69, 19, 0.45) 0%,
    rgba(255, 193, 7, 0.35) 100%);
  box-shadow: 0 8px 32px rgba(139, 69, 19, 0.2);
  backdrop-filter: blur(3px);
  border-radius: 50%;
  position: absolute;
}

/* About Section Decorations */
.about-section {
  position: relative;
}

.about-decoration,
.about-decoration-1,
.about-decoration-2,
.about-decoration-3,
.about-decoration-4,
.about-logo {
  display: none;
}

/* Contact Section Decorations */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-decoration-1 {
  width: 140px;
  height: 140px;
  top: 8%;
  left: 5%;
  background: linear-gradient(135deg,
    rgba(139, 69, 19, 0.4) 0%,
    rgba(210, 105, 30, 0.35) 50%,
    rgba(255, 193, 7, 0.3) 100%);
  box-shadow: 0 12px 40px rgba(139, 69, 19, 0.2);
  backdrop-filter: blur(3px);
}

.contact-decoration-2 {
  width: 110px;
  height: 110px;
  bottom: 10%;
  right: 8%;
  background: linear-gradient(135deg,
    rgba(210, 105, 30, 0.45) 0%,
    rgba(255, 152, 0, 0.35) 50%,
    rgba(139, 69, 19, 0.3) 100%);
  box-shadow: 0 8px 32px rgba(210, 105, 30, 0.25);
  backdrop-filter: blur(3px);
}

.contact-decoration-3 {
  width: 85px;
  height: 85px;
  top: 59px;
  left: -228px;
  background: linear-gradient(135deg,
    rgba(255, 193, 7, 0.4) 0%,
    rgba(139, 69, 19, 0.35) 50%,
    rgba(210, 105, 30, 0.3) 100%);
  box-shadow: 0 6px 24px rgba(255, 193, 7, 0.2);
  backdrop-filter: blur(2px);
}

.contact-decoration-4 {
  width: 60px;
  height: 60px;
  top: 15%;
  right: 12%;
  background: linear-gradient(135deg,
    rgba(210, 105, 30, 0.5) 0%,
    rgba(255, 152, 0, 0.4) 100%);
  box-shadow: 0 5px 20px rgba(210, 105, 30, 0.2);
  backdrop-filter: blur(2px);
}

.contact-decoration-5 {
  width: 95px;
  height: 95px;
  top: 45px;
  left: 588px;
  background: linear-gradient(135deg,
    rgba(139, 69, 19, 0.45) 0%,
    rgba(255, 193, 7, 0.35) 100%);
  box-shadow: 0 8px 32px rgba(139, 69, 19, 0.2);
  backdrop-filter: blur(3px);
}

/* Contact Background Pattern */
.contact-background-pattern {
  position: absolute;
  top: 1px;
  left: 82px;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(139, 69, 19, 0.3) 3px, transparent 3px),
    radial-gradient(circle at 80% 20%, rgba(210, 105, 30, 0.25) 2px, transparent 2px),
    radial-gradient(circle at 30% 80%, rgba(255, 193, 7, 0.2) 2px, transparent 2px),
    radial-gradient(circle at 70% 70%, rgba(210, 105, 30, 0.2) 3px, transparent 3px);
  background-size: 80px 80px, 120px 120px, 100px 100px, 150px 150px;
  background-position: 0 0, 40px 40px, 80px 80px, 120px 120px;
  animation: patternFloat 25s linear infinite;
  z-index: 0;
}

@keyframes patternFloat {
  0% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(-20px) translateY(-10px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

/* Footer Decorations */
.footer {
  position: relative;
  overflow: hidden;
}

.footer-decoration-1 {
  width: 160px;
  height: 160px;
  top: 15%;
  right: 10%;
  animation: float 10s ease-in-out infinite;
  opacity: 0.15;
  background: linear-gradient(135deg,
    rgba(244, 241, 232, 0.2) 0%,
    rgba(237, 230, 211, 0.15) 100%);
}

.footer-decoration-2 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
  animation-delay: -3s;
  opacity: 0.1;
}

/* Responsive para círculos decorativos */
@media (max-width: 768px) {
  .section-decoration,
  .about-decoration,
  .contact-decoration,
  .footer-decoration {
    opacity: 0.2;
  }

  .section-decoration-1,
  .about-decoration-1,
  .contact-decoration-1,
  .footer-decoration-1 {
    width: 80px;
    height: 80px;
  }

  .section-decoration-2,
  .about-decoration-2,
  .contact-decoration-2,
  .footer-decoration-2 {
    width: 60px;
    height: 60px;
  }

  .section-decoration-3,
  .about-decoration-3,
  .contact-decoration-3 {
    width: 50px;
    height: 50px;
  }

  .about-decoration-4 {
    width: 40px;
    height: 40px;
  }
}

/* Footer */
.footer {
  background-color: var(--bean-900);
  color: var(--coffee-100);
  padding: 1.5rem 0;
  min-height: var(--footer-height);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 1rem;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
  }

  .footer-main {
    width: 100%;
  }

  .footer-logo-text {
    font-size: 1.1rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }
}

.footer-vintage-logo {
  justify-self: start;
}

.vintage-logo-image {
  width: 8rem;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .vintage-logo-image {
    width: 6rem;
  }
}

.footer-main {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-self: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-logo-image {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  border-radius: 0.25rem;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-description {
  color: var(--coffee-300);
  margin-bottom: 1rem;
}

.footer-copyright {
  color: var(--coffee-400);
  font-size: 0.875rem;
}



/* Ripple effect for navigation links */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(222, 102, 7, 0.3);
  pointer-events: none;
  animation: rippleEffect 0.6s ease-out;
  z-index: 1;
}

@keyframes rippleEffect {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Utility classes */
.hidden-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hidden-mobile {
    display: block;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Mobile fixes */
@media (max-width: 768px) {
  html { zoom: 1; }
  body { zoom: 1; background-attachment: scroll; }
  #inicio.hero, .hero {
    min-height: calc(100vh - var(--navbar-height)) !important;
    height: calc(100vh - var(--navbar-height)) !important;
  }
}

/* Mobile size reductions */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .logo-image { width: 32px; height: 32px; }
  .logo-text { font-family: 'Georgia', serif; font-size: 1.2rem; }
  .nav-links a { font-size: 0.9rem; padding: 0.5rem 0.75rem; }
  .btn { font-size: 0.85rem; padding: 0.5rem 0.75rem; }
  .btn-lg { font-size: 0.95rem; padding: 0.75rem 1rem; }
  .section-description { font-size: 1rem; }
  .product-name { font-size: 1rem; }
  .product-price { font-size: 1.1rem; }
  .product-description { font-size: 0.85rem; }
  .mobile-menu a { font-size: 18px; padding: 14px 0; }
  .hero { padding-top: 0 !important; }
  .hero-container { padding-top: 0.5rem !important; }
  .hero-main-title { padding-top: 0 !important; }
  /* Hero spacing shrink */
  .hero-main-title { padding-top: 0 !important; margin-bottom: 0.2rem !important; }
  .hero-title-line-1, .hero-title-line-2 { font-size: 3.5rem; line-height: 0.95; }
  .hero-title-line-2 { font-size: 4rem; }
  .hero-tagline { padding-top: 0.5rem !important; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .hero-title-line-1 { font-size: 3rem; }
  .hero-title-line-2 { font-size: 3.5rem; }
  .hero-tagline { font-size: 1rem; }
  .badge { font-size: 0.75rem; padding: 0.5rem 1rem; min-width: 110px; }
  .about-title { font-size: 1.5rem; }
  .contact-title { font-size: 1.1rem; }
  .contact-info { font-size: 0.9rem; }
}

/* About title and badge layout on tablets/mobiles */
@media (max-width: 1024px) {
  .about-section .badge {
    position: static;
    transform: none;
    margin: 0 auto 12px;
  }
  .about-title {
    position: static;
    transform: none;
    width: auto;
    text-align: center;
    margin: 0 0 8px;
  }
}

/* Desktop-only: Move sections left */
@media (min-width: 1025px) {
  .hero,
  .products-section,
  .about-section,
  .faq-section,
  .contact-section {
    margin-left: -10vw;
    padding-left: 10vw;
  }
}
