:root {
  --vc-black: #111111;
  --vc-white: #ffffff;
  --vc-bg: #f3f1ea;
  --vc-surface: #ffffff;
  --vc-surface-soft: #f5f3ed;
  --vc-border: #e7e1d5;
  --vc-green: #669933;
  --vc-green-dark: #557f29;
  --vc-text: #1d1d1d;
  --vc-text-soft: #4f4f4f;
  --vc-muted: #6e6e6e;

  --vc-radius-xl: 32px;
  --vc-radius-lg: 24px;
  --vc-radius-md: 18px;
  --vc-radius-sm: 14px;

  --vc-shadow: 0 20px 60px rgba(0,0,0,.08);
  --vc-shadow-soft: 0 12px 35px rgba(0,0,0,.05);
  --vc-shadow-strong: 0 28px 80px rgba(0,0,0,.14);

  --vc-container: 1240px;
  --vc-transition: .22s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
}

body {
  min-height: 100%;
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--vc-bg);
  color: var(--vc-text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--vc-transition), opacity var(--vc-transition), transform var(--vc-transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


.vc-container {
  width: min(100% - 32px, var(--vc-container));
  margin-inline: auto;
}

.vc-home-section,
.vc-product-archive,
.vc-single-experience,
.vc-single-note-page,
.vc-note-archive-page,
.vc-calendar-page {
  overflow: clip;
}

.vc-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  line-height: 1.2;
}

.vc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  transition: transform var(--vc-transition), box-shadow var(--vc-transition), background var(--vc-transition), color var(--vc-transition), border-color var(--vc-transition);
}

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

.vc-btn-primary {
  background: var(--vc-green);
  color: #000;
}

.vc-btn-primary:hover {
  background: var(--vc-green-dark);
  color: #fff;
}

.vc-btn-secondary,
.vc-btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.70);
  color: 1px solid rgba(255,255,255,.70);;
}

.vc-btn-secondary:hover,
.vc-btn-ghost:hover {
  background: rgba(255,255,255,.04);
}

.vc-btn-whatsapp {
  background: #1f1f1f;
  color: #fff;
}

.vc-btn-whatsapp:hover {
  background: #000;
}

.vc-card-surface {
  background: var(--vc-surface);
  border-radius: var(--vc-radius-xl);
  box-shadow: var(--vc-shadow);
}

/* =========================================================
   HEADER / NAV
   ========================================================= */

body.vc-menu-open {
  overflow: hidden;
}

.vc-site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(17, 17, 17, 0.74);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
  isolation: isolate;
}

.vc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
  position: relative;
}

.vc-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}

.vc-logo-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--vc-green);
  color: #000;
  border-radius: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.vc-logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.vc-logo-text strong {
  font-size: 13px;
  letter-spacing: 0.18em;
}

.vc-logo-text small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.66);
}

.vc-logo-image .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.vc-logo-image img.custom-logo {
  max-height: 54px;
  width: auto;
}

.vc-primary-nav {
  display: flex;
  align-items: center;
  min-width: 0;
}

.vc-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #fff;
}

.vc-menu li {
  margin: 0;
  padding: 0;
}

.vc-menu a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.vc-menu a:hover {
  opacity: 0.78;
}

.vc-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 3;
}

.vc-header-socials,
.vc-mobile-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vc-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.vc-social-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
}

.vc-social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.vc-header-cta {
  min-height: 42px;
  padding: 11px 18px;
  font-size: 14px;
}

.vc-menu-toggle {
  display: none;
  position: relative;
  z-index: 130;
  padding: 0;
  border: 0;
  background: transparent;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
}

.vc-mobile-panel,
.vc-header-overlay {
  display: none;
}

.vc-mobile-panel-top {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vc-mobile-panel-top h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
}

.vc-mobile-panel-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.vc-mobile-panel-nav {
  padding-top: 10px;
}

.vc-mobile-panel-block {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vc-mobile-panel-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
}

.vc-mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vc-mobile-menu li {
  margin: 0;
  padding: 0;
}

.vc-mobile-menu li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vc-mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 14px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.vc-mobile-menu a::after {
  content: "→";
  color: rgba(255, 255, 255, 0.34);
  font-weight: 400;
}

.vc-mobile-socials {
  flex-wrap: wrap;
}

.vc-mobile-panel-cta {
  margin-top: 24px;
}

.vc-mobile-panel-cta .vc-btn {
  width: 100%;
  min-height: 50px;
}

.vc-cart-link {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}

.vc-cart-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
}

.vc-cart-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vc-cart-link__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.vc-cart-link__count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2d2d2d;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  border: 2px solid #111;
}

.vc-cart-link__count.has-items {
  background: var(--vc-green);
  color: #111;
}

.vc-cart-link--mobile {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  justify-content: space-between;
  border-radius: 18px;
}

.vc-cart-link__text {
  flex: 1;
  margin-left: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

/* ===== Fondo decorativo inferior global ===== */

body::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: min(34vw, 340px);
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(
      to bottom,
      var(--vc-bg) 0%,
      rgba(245, 242, 235, 0.96) 10%,
      rgba(245, 242, 235, 0.82) 18%,
      rgba(245, 242, 235, 0.42) 30%,
      rgba(245, 242, 235, 0) 44%
    ),
    var(--vc-background-art-desktop, none);
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center top;
  background-size: 100% 100%, cover;
}

@media (max-width: 768px) {
  body::after {
    height: min(32vw, 180px);
    background-image:
      linear-gradient(
        to bottom,
        var(--vc-bg) 0%,
        rgba(245, 242, 235, 0.96) 10%,
        rgba(245, 242, 235, 0.82) 18%,
        rgba(245, 242, 235, 0.42) 30%,
        rgba(245, 242, 235, 0) 44%
      ),
      var(--vc-background-art-mobile, var(--vc-background-art-desktop, none));
    background-repeat: no-repeat, no-repeat;
    background-position: center top, center top;
    background-size: 100% 100%, cover;
  }
}

header,
main,
footer,
.vc-mobile-panel,
.vc-header-overlay,
#wpadminbar {
  position: relative;
  z-index: 1;
}
