    :root {
      
      /* MASTER CANVAS GRADIENT (exact palette pattern) */
      --vv-master-gradient: #ffffff;
--bg: #f5e9da;           /* Neutral Antique White */
      --bg-soft: #f7efe4;
      --ink: #111312;

      --primary: #486e4c;      /* Bermuda Grass */
      --primary-2: #3a583d;
      --primary-soft: rgba(72,110,76,0.72);
      --sage: #91a894;         /* Light-hearted Green */
      --mint: #b6c5b7;
      --sky: #a7c7d9;          /* Pretty Light Blue */
      --mauve: #c7b7d9;        /* Misty Mauve */

      --text: #1f2421;
      --text-soft: #555b55;
      --border: rgba(58, 88, 61, 0.18);

      --max-width: 1120px;
      --radius-lg: 18px;
      --radius-xl: 26px;

      --shadow-soft: 0 16px 44px rgba(0,0,0,0.08);
      --shadow-card: 0 10px 22px rgba(0, 0, 0, 0.05);
      --transition: 0.22s ease;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      /* Palette-locked atmosphere (not "all cream") */      background: #ffffff;      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: var(--primary); text-decoration: none; }

    /* Soft paper + subtle grain (keep, but don't wash out the master gradient) */
    body::before {
  content: none !important;
  display: none !important;
}

    body::after {
  content: none !important;
  display: none !important;
}


    .page { min-height: 100vh; display: flex; flex-direction: column; position: relative; z-index: 1; }
    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* HEADER */
    header {
      position: sticky;
      top: 0;
      z-index: 60;
      backdrop-filter: blur(16px);
      background: rgba(245,233,218,0.82);
      border-bottom: 1px solid rgba(58, 88, 61, 0.12);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.9rem 0;
      gap: 1rem;
    }
    .logo { display: flex; align-items: center; gap: 0.7rem; }
    .logo-mark {
      width: 34px; height: 34px; border-radius: 14px;
      background: linear-gradient(145deg, rgba(145,168,148,0.6), rgba(72,110,76,0.92));
      display: flex; align-items: center; justify-content: center;
      color: #f7efe4; font-weight: 700; font-size: 0.9rem;
      box-shadow: 0 10px 22px rgba(0,0,0,0.12);
      position: relative;
    }
    .logo-mark::after {
      content: "";
      position: absolute;
      inset: -6px;
      border-radius: 18px;
      background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.22), transparent 55%);
      opacity: 0.6;
      pointer-events: none;
    }
    .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .logo-text span:first-child {
      font-family: "Poppins", sans-serif;
      font-weight: 700; letter-spacing: 0.08em;
      font-size: 0.9rem; text-transform: uppercase;
    }
    .logo-text span:last-child { font-size: 0.76rem; color: var(--text-soft); }

    nav {
      display: flex;
      gap: 1.35rem;
      align-items: center;
      font-size: 0.92rem;
    }
    nav a {
      position: relative;
      padding: 0.2rem 0;
      opacity: 0.92;
      color: var(--text);
    }
    nav a::after {
      content: "";
      position: absolute;
      left: 0; bottom: -0.18rem;
      width: 0; height: 2px;
      border-radius: 999px;
      background-color: rgba(72,110,76,0.85);
      transition: width var(--transition);
    }
    nav a:hover::after { width: 100%; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 0.58rem 1.28rem;
      font-size: 0.88rem;
      font-weight: 700;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform var(--transition), box-shadow var(--transition),
                  background-color var(--transition), border-color var(--transition), opacity var(--transition);
      white-space: nowrap;
      background: none;
      font-family: "Poppins", sans-serif;
      letter-spacing: 0.01em;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      color: #f7efe4;
      box-shadow: 0 12px 28px rgba(58, 88, 61, 0.28);
    }
    .btn-primary:hover {
      transform: translateY(-1px);
      background: var(--mauve);
      color: var(--primary-2);
      border-color: rgba(72,110,76,0.35);
      box-shadow: 0 14px 32px rgba(58, 88, 61, 0.24);
    }
    .btn-ghost {
      border-color: rgba(58, 88, 61, 0.18);
      background-color: rgba(247, 239, 228, 0.7);
    }
    .btn-ghost:hover {
      transform: translateY(-1px);
      background: var(--mauve);
      color: var(--primary-2);
      border-color: rgba(72,110,76,0.35);
    }
    .btn-outline {
      border-color: rgba(72,110,76,0.8);
      color: var(--primary-2);
      background-color: rgba(255,255,255,0.22);
    }
    .btn-outline:hover {
      transform: translateY(-1px);
      background: var(--mauve);
      color: var(--primary-2);
      border-color: rgba(72,110,76,0.35);
    }

    .lang-switch {
      display: inline-flex; align-items: center; gap: 0.45rem;
      font-size: 0.78rem; padding: 0.32rem 0.78rem;
      border-radius: 999px; border: 1px solid rgba(58, 88, 61, 0.16);
      background-color: rgba(247, 239, 228, 0.72);
      font-family: "Poppins", sans-serif;
    }
    .lang-switch button {
      border: none; background: none; font: inherit;
      cursor: pointer; padding: 0.1rem 0.25rem;
      opacity: 0.55; transition: opacity var(--transition);
    }
    .lang-switch button.active { opacity: 1; font-weight: 700; }
    .lang-divider { width: 1px; height: 16px; background-color: rgba(58,88,61,0.18); }

    .header-right { display: flex; align-items: center; gap: 0.75rem; }

    
    /* CART (navbar + premium drawer) */
    .cart-wrap { position: relative; }
    .cart-btn {
      position: relative;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 1px solid rgba(58, 88, 61, 0.18);
      background: rgba(247,239,228,0.72);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
    }
    .cart-btn:hover {
      transform: translateY(-1px);
      border-color: rgba(72,110,76,0.35);
      box-shadow: 0 10px 24px rgba(0,0,0,0.10);
      background: var(--mauve);
    }
    .cart-btn svg { width: 20px; height: 20px; }
    .cart-badge {
      position: absolute;
      top: -6px;
      right: -6px;
      min-width: 18px;
      height: 18px;
      padding: 0 5px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      color: #f7efe4;
      font-size: 11px;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 18px rgba(58, 88, 61, 0.25);
      transform: scale(0);
      transform-origin: center;
      transition: transform var(--transition);
    }
    .cart-badge.show { transform: scale(1); }

    .cart-popover {
      position: absolute;
      top: 54px;
      right: 0;
      width: 240px;
      padding: 0.85rem;
      border-radius: 16px;
      border: 1px solid rgba(58, 88, 61, 0.18);
      background: rgba(247,239,228,0.92);
      backdrop-filter: blur(14px);
      box-shadow: 0 18px 48px rgba(0,0,0,0.14);
      opacity: 0;
      transform: translateY(-6px);
      pointer-events: none;
      transition: opacity var(--transition), transform var(--transition);
      z-index: 80;
      font-size: 0.9rem;
    }
    .cart-popover strong { display:block; font-family:"Poppins",sans-serif; font-size:0.9rem; margin-bottom:0.25rem; }
    .cart-popover .muted { color: var(--text-soft); font-size: 0.82rem; }

    .cart-wrap:hover .cart-popover { opacity: 1; transform: translateY(0); pointer-events: auto; }

    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(17,19,18,0.38);
      backdrop-filter: blur(3px);
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition);
      z-index: 90;
    }
    .drawer-overlay.open { opacity: 1; pointer-events: auto; }

    .cart-drawer {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: min(420px, 92vw);
      background: rgba(247,239,228,0.96);
      border-left: 1px solid rgba(58, 88, 61, 0.18);
      backdrop-filter: blur(16px);
      box-shadow: -18px 0 60px rgba(0,0,0,0.18);
      transform: translateX(110%);
      transition: transform 0.34s cubic-bezier(.2,.8,.2,1);
      z-index: 100;
      display: flex;
      flex-direction: column;
    }
    .cart-drawer.open { transform: translateX(0); }

    .drawer-head {
      padding: 1.05rem 1.15rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
      border-bottom: 1px solid rgba(58, 88, 61, 0.14);
    }
    .drawer-title { font-family: "Poppins", sans-serif; font-weight: 800; font-size: 1.02rem; }
    .drawer-close {
      width: 40px; height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(58, 88, 61, 0.18);
      background: rgba(255,255,255,0.35);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: transform var(--transition), background var(--transition);
    }
    .drawer-close:hover { transform: translateY(-1px); background: rgba(255,255,255,0.22); }

    .drawer-body { padding: 1rem 1.15rem; overflow: auto; flex: 1; }
    .cart-empty { padding: 1.25rem 0.25rem; color: var(--text-soft); font-size: 0.95rem; }

    .cart-item {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 0.9rem;
      padding: 0.9rem 0.25rem;
      border-bottom: 1px dashed rgba(58, 88, 61, 0.16);
      align-items: center;
    }
    .cart-thumb {
      width: 64px; height: 64px;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(58, 88, 61, 0.16);
      box-shadow: 0 10px 20px rgba(0,0,0,0.06);
      background: rgba(255,255,255,0.25);
    }
    .cart-thumb img { width:100%; height:100%; object-fit: cover; }
    .cart-item h4 { font-family:"Poppins",sans-serif; font-size:0.95rem; margin-bottom:0.25rem; }
    .cart-item .meta { color: var(--text-soft); font-size: 0.82rem; display:flex; justify-content:space-between; gap:0.5rem; flex-wrap:wrap; }

    .qty { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.6rem; }
    .qty button {
      width: 34px; height: 34px;
      border-radius: 999px;
      border: 1px solid rgba(58, 88, 61, 0.18);
      background: rgba(255,255,255,0.35);
      cursor: pointer;
      font-weight: 900;
      font-family: "Poppins", sans-serif;
      transition: transform var(--transition), background var(--transition);
    }
    .qty button:hover { transform: translateY(-1px); background: rgba(255,255,255,0.22); }
    .qty span { min-width: 28px; text-align: center; font-family: "Poppins", sans-serif; font-weight: 800; }

    .remove-item {
      margin-left: auto;
      border: none;
      background: none;
      cursor: pointer;
      color: rgba(164,92,76,0.95);
      font-weight: 800;
      font-size: 0.82rem;
      padding: 0.3rem 0.4rem;
    }

    .drawer-foot {
      padding: 1rem 1.15rem 1.2rem;
      border-top: 1px solid rgba(58, 88, 61, 0.14);
      background: linear-gradient(180deg, rgba(247,239,228,0.75), rgba(247,239,228,0.96));
    }
    .totals { display:flex; justify-content:space-between; align-items:center; font-family:"Poppins",sans-serif; font-weight: 800; margin-bottom: 0.85rem; }
    .totals .muted { font-weight: 700; color: var(--text-soft); }

    .drawer-actions { display:flex; gap: 0.6rem; flex-wrap:wrap; }
    .btn-small { padding: 0.55rem 1rem; font-size: 0.86rem; }

    /* product image links */
    .product-link { display:block; border-radius: 22px; overflow:hidden; }
    .product-link:focus-visible { outline: 3px solid rgba(167,199,217,0.8); outline-offset: 4px; border-radius: 22px; }

    @media (max-width: 960px) { .cart-popover { display:none; } }

/* Decorative: small star + dotted connector */
    .deco {
      position: absolute;
      pointer-events: none;
      z-index: 0;
      opacity: 0.9;
    }
    .deco svg { display: block; }
    .deco--sparkle {
      filter: drop-shadow(0 10px 18px rgba(0,0,0,0.07));
      opacity: 0.55;
    }
    .deco--dotted {
      opacity: 0.42;
    }
    .deco--blob {
      opacity: 0.65;
      filter: blur(0px);
    }

    /* HERO */
    main { flex: 1; }
    .hero {
      padding: 3.8rem 0 3.2rem;
      position: relative;
      overflow: hidden;
    }
    .hero .deco.hero-blob {
      left: -140px; top: -110px;
      width: 340px; height: 340px;
    }
    .hero .deco.hero-dotted {
      right: -40px; top: 70px;
      width: 240px; height: 180px;
    }
    .hero .deco.hero-sparkle {
      left: 52%; top: 18px;
      width: 120px; height: 120px;
      transform: rotate(-10deg);
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
      gap: 2.5rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .eyebrow {
      font-family: "Poppins", sans-serif;
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: rgba(72,110,76,0.95);
      font-weight: 700;
      margin-bottom: 0.75rem;
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
    }
    .eyebrow::before {
      content: "";
      width: 10px; height: 10px;
      border-radius: 4px;
      background: rgba(145,168,148,0.9);
      box-shadow: 0 0 0 6px rgba(145,168,148,0.16);
    }
    .hero h1 {
      font-family: "Playfair Display", serif;
      font-size: clamp(2.1rem, 2.35rem + 0.9vw, 3.05rem);
      line-height: 1.08;
      margin-bottom: 1rem;
      letter-spacing: -0.01em;
    }
    .hero h1 span.highlight {
      color: var(--primary-2);
      background: linear-gradient(0deg, rgba(167,199,217,0.55), rgba(167,199,217,0.0));
      padding: 0 0.12em;
      border-radius: 10px;
    }

    .hero-subtitle {
      font-size: 1.02rem;
      color: var(--text-soft);
      margin-bottom: 1.75rem;
      max-width: 36rem;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      margin-bottom: 1.65rem;
    }

    .hero-note {
      font-size: 0.85rem;
      color: rgba(31,36,33,0.78);
      display: flex;
      align-items: center;
      gap: 0.55rem;
      background: rgba(255,255,255,0.35);
      border: 1px dashed rgba(58,88,61,0.22);
      padding: 0.62rem 0.85rem;
      border-radius: 14px;
      max-width: 42rem;
    }
    .hero-note-badge {
      width: 10px; height: 10px;
      border-radius: 50%;
      background-color: rgba(72,110,76,0.92);
      box-shadow: 0 0 0 6px rgba(72,110,76,0.18);
      flex: 0 0 auto;
    }

    .hero-card {
      background: rgba(255,255,255,0.38);
      border-radius: var(--radius-xl);
      padding: 1.85rem 1.65rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(58, 88, 61, 0.16);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    .hero-card::before {
      content: "";
      position: absolute;
      inset: -2px;
      background:
        radial-gradient(500px 260px at 20% 0%, rgba(167,199,217,0.30), transparent 60%),
        radial-gradient(460px 280px at 85% 18%, rgba(199,183,217,0.30), transparent 62%),
        radial-gradient(520px 320px at 48% 110%, rgba(145,168,148,0.22), transparent 60%);
      opacity: 0.85;
      z-index: 0;
      pointer-events: none;
    }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 0.45rem;
      font-size: 0.8rem; padding: 0.35rem 0.82rem;
      border-radius: 999px;
      background-color: rgba(72,110,76,0.08);
      color: rgba(31,36,33,0.78);
      margin-bottom: 0.95rem;
      border: 1px solid rgba(58,88,61,0.14);
      position: relative;
      z-index: 1;
      font-family: "Poppins", sans-serif;
    }
    .hero-tag-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background-color: rgba(72,110,76,0.92);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.95rem;
      position: relative;
      z-index: 1;
    }
    .hero-pill {
      border-radius: var(--radius-lg);
      padding: 0.95rem 1rem;
      background-color: rgba(247, 239, 228, 0.76);
      border: 1px solid rgba(58, 88, 61, 0.14);
      font-size: 0.8rem;
    }
    .hero-pill strong {
      display: block;
      font-family: "Poppins", sans-serif;
      font-size: 0.84rem;
      margin-bottom: 0.15rem;
    }

    .hero-image {
      margin-top: 1.25rem;
      border-radius: var(--radius-lg);
      background-image:
        linear-gradient(135deg, rgba(72,110,76,0.10), rgba(167,199,217,0.30)),
        url("img/vv-hero-soaps-natural-01.jpeg");
      background-size: cover;
      background-position: center;
      padding: 1.15rem;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 0.8rem;
      color: #f7efe4;
      position: relative;
      overflow: hidden;
      min-height: 190px;
    }
    .hero-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(17,19,18,0.68), rgba(17,19,18,0.10));
      z-index: 0;
    }
    .hero-image-text, .hero-image-badge { position: relative; z-index: 1; }
    .hero-image-text h3 {
      font-family: "Playfair Display", serif;
      font-size: 1.05rem;
      margin-bottom: 0.2rem;
      letter-spacing: -0.01em;
    }
    .hero-image-text p { font-size: 0.8rem; opacity: 0.92; max-width: 15rem; }
    .hero-image-badge {
      font-size: 0.8rem;
      padding: 0.42rem 0.72rem;
      border-radius: 999px;
      background-color: rgba(247,239,228,0.14);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(247,239,228,0.35);
      text-align: right;
      font-family: "Poppins", sans-serif;
    }

    /* SECCIONES */
    section { padding: 3.2rem 0; scroll-margin-top: 90px; position: relative; }
    /* Gentle section tint so the palette lives across the whole page, not only inside cards */





    .section-heading { max-width: 44rem; margin-bottom: 1.8rem; position: relative; z-index: 1; }
    .section-heading h2 {
      font-family: "Playfair Display", serif;
      font-size: 1.85rem;
      margin-bottom: 0.55rem;
      letter-spacing: -0.01em;
      position: relative;
      display: inline-block;
    }
    /* Colored underline accent */
    .section-heading h2::after {
      content: "";
      position: absolute;
      left: 0; bottom: -0.20rem;
      width: 100%;
      height: 10px;
      background: linear-gradient(90deg, rgba(167,199,217,0.65), rgba(199,183,217,0.45));
      border-radius: 999px;
      z-index: -1;
      filter: blur(0.2px);
      opacity: 0.75;
    }
    .section-heading p { font-size: 0.98rem; color: var(--text-soft); }

    .two-column {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
      gap: 2.1rem;
      align-items: flex-start;
      position: relative;
      z-index: 1;
    }

    
    /* Right column stack: callout + character (keeps character OUTSIDE boxes) */
    .vv-aside{
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
      align-items: stretch;
    }
    .vv-aside .muted-box{
      width: 100%;
    }
.muted-box {
      background-color: rgba(245,233,218,0.90);
      border-radius: var(--radius-lg);
      padding: 1.25rem 1.25rem;
      border: 1px solid rgba(58,88,61,0.14);
      font-size: 0.9rem;
      color: rgba(31,36,33,0.78);
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
    }
    .muted-box::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(520px 220px at 12% 10%, rgba(199,183,217,0.18), transparent 60%),
        radial-gradient(520px 220px at 92% 30%, rgba(167,199,217,0.18), transparent 60%),
        radial-gradient(540px 280px at 40% 110%, rgba(145,168,148,0.16), transparent 60%);
      opacity: 0.9;
      pointer-events: none;
    }
    .muted-box > * { position: relative; z-index: 1; }

    /* Character placements (kept inside the right column so it doesn't "break" the grid) */
    .vv-character{
      margin-top: 1.25rem;
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
      pointer-events: none;
      user-select: none;
    }
    .vv-character img{
      width: min(360px, 100%);
      height: auto;
      filter: drop-shadow(0 22px 40px rgba(0,0,0,0.18));
      transform: translateY(0);
      animation: vvCharFloat 9s ease-in-out infinite;
    }
    .vv-character--charcoal img{ width: min(380px, 100%); }
    .vv-character--bee img{ width: min(360px, 100%); }

    @keyframes vvCharFloat{
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-12px); }
    }
    @media (max-width: 900px){
      .vv-character{ display: none; }
    }

    ul.clean-list {
      list-style: none;
      display: grid;
      gap: 0.75rem;
      font-size: 0.95rem;
      position: relative;
      z-index: 1;
    }
    .clean-list li {
      display: flex;
      gap: 0.65rem;
      align-items: flex-start;
      background: rgba(245,233,218,0.88);
      border: 1px solid rgba(58,88,61,0.10);
      border-radius: 16px;
      padding: 0.85rem 0.9rem;
    }

    /* ============================
       Color & Contrast — Info Boxes
       (Verde Vitalis palette-locked)
       ============================ */

    /* PROBLEMA: educational + gentle warning */
    #problema .clean-list li{
      background: rgba(245,233,218,0.92); /* yellow family (antique) */
      border-color: rgba(58,88,61,0.14);
    }
    #problema .muted-box{
      background-color: rgba(245,233,218,0.92); /* yellow family (antique) */
      border-color: rgba(58,88,61,0.16);
    }

    /* SOBRE: handmade rigor / trust */
    #sobre .clean-list li{
      background: rgba(145,168,148,0.58); /* --sage */
      border-color: rgba(58,88,61,0.18);
    }
    #sobre .muted-box{
      background-color: rgba(245,233,218,0.92); /* --bg */
      border-color: rgba(58,88,61,0.16);
    }

    /* EDUCACION (disruptor hormonal): soft sensitive emphasis */
    #educacion .muted-box{
      background-color: rgba(245,233,218,0.92); /* yellow family (antique) */
      border-color: rgba(58,88,61,0.16);
    }

    .bullet-badge {
      width: 28px; height: 28px;
      border-radius: 12px;
      border: 1px solid rgba(58,88,61,0.18);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.95rem;
      margin-top: 0.15rem;
      font-family: "Poppins", sans-serif;
      background: rgba(247,239,228,0.55);
      flex: 0 0 auto;
    }
    .bullet-badge.negative {
      border-color: rgba(164, 92, 76, 0.35);
      color: rgba(164, 92, 76, 0.9);
      background: rgba(245, 233, 218, 0.55);
    }

    /* PRODUCTOS */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.4rem;
      position: relative;
      z-index: 1;
    }
    .product-card {
      background-color: rgba(255,255,255,0.34);
      border-radius: var(--radius-xl);
      border: 1px solid rgba(58,88,61,0.14);
      padding: 1.1rem 1.1rem 1.2rem;
      box-shadow: var(--shadow-card);
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      overflow: hidden;
      position: relative;
    
      gap: 0.75rem;
      padding: 1.25rem 1.15rem;}
    .product-card::before {
      content: "";
      position: absolute;
      inset: -40px -40px auto auto;
      width: 160px; height: 160px;
      background: radial-gradient(circle at 40% 40%, rgba(167,199,217,0.55), rgba(167,199,217,0.0) 62%);
      transform: rotate(12deg);
      opacity: 0.55;
      pointer-events: none;
    }
    .product-img {
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(58,88,61,0.12);
      box-shadow: 0 12px 26px rgba(0,0,0,0.06);
      background: rgba(247,239,228,0.55);
      position: relative;
    }
    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.01);
    }
    .product-tag {
      font-family: "Poppins", sans-serif;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(72,110,76,0.95);
      margin-top: 0.35rem;
    }
    .product-card h3 {
      font-family: "Playfair Display", serif;
      font-size: 1.15rem;
      letter-spacing: -0.01em;
    }
    .product-desc { font-size: 0.92rem; color: rgba(31,36,33,0.78); 
      flex: 1 1 auto;}
    .product-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 0.35rem;
      font-size: 0.92rem;
    }
    .price {
      font-family: "Poppins", sans-serif;
      font-weight: 700;
      color: rgba(58,88,61,0.95);
    }
    .product-cta { margin-top: auto;
      padding-top: 0.7rem;}

    
    .product-cta .btn { width: 100%; justify-content: center; }
/* PILARES / TESTIMONIOS */
    .pillars-grid,
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.2rem;
      position: relative;
      z-index: 1;
    }
    .pillar {
      background-color: rgba(255,255,255,0.30);
      border-radius: var(--radius-xl);
      padding: 1.15rem 1.15rem;
      border: 1px solid rgba(58,88,61,0.12);
      font-size: 0.93rem;
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
    }
    .pillar::after {
      content: "";
      position: absolute;
      right: -45px; bottom: -55px;
      width: 170px; height: 170px;
      background: radial-gradient(circle at 35% 35%, rgba(145,168,148,0.42), rgba(145,168,148,0.0) 64%);
      opacity: 0.65;
      pointer-events: none;
    }
    .pillar h3 {
      font-family: "Poppins", sans-serif;
      font-size: 0.98rem;
      margin-bottom: 0.35rem;
    }
    .testimonial {
      background-color: rgba(255,255,255,0.32);
      border-radius: var(--radius-xl);
      padding: 1rem 1rem;
      border: 1px solid rgba(58,88,61,0.12);
      font-size: 0.9rem;
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
    }
    .testimonial::before {
      content: "“";
      position: absolute;
      top: 0.25rem;
      right: 0.9rem;
      font-family: "Playfair Display", serif;
      font-size: 3.2rem;
      color: rgba(72,110,76,0.20);
      line-height: 1;
      pointer-events: none;
    }
    .testimonial p { margin-bottom: 0.6rem; position: relative; z-index: 1; }
    .testimonial span {
      font-family: "Poppins", sans-serif;
      font-weight: 600;
      font-size: 0.82rem;
      color: rgba(31,36,33,0.68);
      position: relative;
      z-index: 1;
    }

    .fact-list {
      list-style: none;
      display: grid;
      gap: 0.55rem;
      font-size: 0.95rem;
    }
    .fact-list li::before {
      content: "•";
      margin-right: 0.45rem;
      color: rgba(72,110,76,0.9);
      font-weight: 700;
    }

    /* LEAD / CONTACTO */
    .lead-magnet {
      background-color: rgba(255,255,255,0.35);
      border-radius: var(--radius-xl);
      border: 1px solid rgba(58,88,61,0.14);
      padding: 1.8rem 1.55rem;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr);
      gap: 1.7rem;
      align-items: center;
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    .lead-magnet::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(620px 260px at 18% 15%, rgba(167,199,217,0.22), transparent 60%),
        radial-gradient(620px 260px at 92% 20%, rgba(199,183,217,0.22), transparent 62%),
        radial-gradient(640px 300px at 50% 120%, rgba(145,168,148,0.18), transparent 60%);
      opacity: 0.95;
      pointer-events: none;
    }
    .lead-magnet > * { position: relative; z-index: 1; }
    .lead-magnet h3 {
      font-family: "Playfair Display", serif;
      font-size: 1.22rem;
      margin-bottom: 0.5rem;
      letter-spacing: -0.01em;
    }
    .lead-magnet p { font-size: 0.96rem; color: rgba(31,36,33,0.78); }
    .lead-form { display: flex; flex-wrap: wrap; gap: 0.6rem; }
    .lead-form input[type="email"] {
      flex: 1;
      min-width: 200px;
      padding: 0.68rem 0.85rem;
      border-radius: 999px;
      border: 1px solid rgba(58,88,61,0.18);
      font-size: 0.92rem;
      outline: none;
      background: rgba(247,239,228,0.72);
    }
    .lead-form input[type="email"]:focus {
      border-color: rgba(72,110,76,0.45);
      box-shadow: 0 0 0 6px rgba(145,168,148,0.18);
    }
    .lead-note { margin-top: 0.5rem; font-size: 0.82rem; color: rgba(31,36,33,0.70); }

    .final-cta {
      text-align: center;
      padding: 3.2rem 1rem 2.8rem;
      background: rgba(255,255,255,0.30);
      border-radius: var(--radius-xl);
      border: 1px solid rgba(58,88,61,0.16);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }
    .final-cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(800px 340px at 25% 0%, rgba(167,199,217,0.24), transparent 60%),
        radial-gradient(720px 320px at 80% 20%, rgba(199,183,217,0.24), transparent 62%),
        radial-gradient(720px 360px at 50% 120%, rgba(145,168,148,0.20), transparent 60%);
      opacity: 0.95;
      pointer-events: none;
    }
    .final-cta > * { position: relative; z-index: 1; }
    .final-cta h2 {
      font-family: "Playfair Display", serif;
      font-size: 2.05rem;
      margin-bottom: 0.75rem;
      letter-spacing: -0.01em;
    }
    .final-cta p { font-size: 1.02rem; color: rgba(31,36,33,0.82); margin-bottom: 1.6rem; }
    .final-cta .hero-ctas { justify-content: center; }

    /* Footer */
    footer {
      padding: 1.9rem 0 1.6rem;
      border-top: 1px solid rgba(58,88,61,0.12);
      margin-top: 2.3rem;
      font-size: 0.86rem;
      color: rgba(31,36,33,0.70);
      position: relative;
      z-index: 1;
    }
    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1rem;
      align-items: center;
    }
    .footer-links { display: flex; flex-wrap: wrap; gap: 0.95rem; }
    .footer-social { display: flex; gap: 0.9rem; align-items: center; }
    .footer-social a { font-family: "Poppins", sans-serif; font-weight: 600; }

    /* Section-specific decos */
    .section-deco {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }
    .section-deco .corner {
      position: absolute;
      width: 220px;
      height: 220px;
      opacity: 0.55;
    }
    .section-deco .corner.top-right { top: -70px; right: -80px; }
    .section-deco .corner.bottom-left { bottom: -90px; left: -90px; opacity: 0.45; }
    .section-deco .scribble {
      position: absolute;
      width: 260px;
      height: 200px;
      opacity: 0.4;
      right: -80px;
      bottom: -40px;
      transform: rotate(10deg);
    }
    .section-deco .spark {
      position: absolute;
      width: 120px;
      height: 120px;
      opacity: 0.45;
      left: -35px;
      top: 20px;
    }

    /* RESPONSIVE */
    @media (max-width: 960px) {
      nav { display: none; }
      .hero-inner,
      .two-column,
      .lead-magnet { grid-template-columns: minmax(0, 1fr); }
      .hero { padding-top: 2.8rem; }
      .hero .deco.hero-sparkle { left: 8%; top: 10px; }
    }
    @media (max-width: 820px) {
      .product-grid,
      .pillars-grid,
      .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    @media (max-width: 640px) {
      .header-inner { padding-block: 0.72rem; }
      .product-grid,
      .pillars-grid,
      .testimonials-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-card { margin-top: 1rem; }
      .final-cta h2 { font-size: 1.7rem; }
      .lead-form { flex-direction: column; }
    }

    /* IDIOMAS (robusto) */
    body:not(.lang-en-active) [data-lang="es"] { display: block !important; }
    body:not(.lang-en-active) [data-lang="en"] { display: none !important; }
    body.lang-en-active [data-lang="es"] { display: none !important; }
    body.lang-en-active [data-lang="en"] { display: block !important; }
  
    /* BRAND DOODLES + LOGO */
    .logo-mark.logo-img{
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: rgba(250,247,240,0.65);
      border: 1px solid rgba(222,215,196,0.9);
      overflow: hidden;
      box-shadow: 0 10px 24px rgba(0,0,0,0.06);
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .logo-mark.logo-img img{
      width: 100%;
      height: 100%;
      object-fit: contain;
      transform: scale(1.06);
      filter: drop-shadow(0 6px 10px rgba(0,0,0,0.10));
    }

    /* subtle section underline + dotted charm */
    .section-heading h2{
      position: relative;
      display: inline-block;
      padding-bottom: 0.35rem;
    }
    .section-heading h2::after{
      content:"";
      position:absolute;
      left:0;
      bottom:0;
      width: min(220px, 100%);
      height: 10px;
      border-radius: 999px;
      background:
        radial-gradient(circle, rgba(60,110,71,0.35) 2px, transparent 3px) 0 50%/14px 10px repeat-x;
      opacity: .7;
      pointer-events:none;
    }

    /* doodle layer (stars, smiles, coconuts, scribbles) */
    .doodle-layer{
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 5;
      opacity: 1;
      mix-blend-mode: multiply;
    }
    .doodle{
      position: absolute;
      width: 64px;
      height: 64px;
      opacity: .22;
      transform: rotate(var(--r, 0deg)) scale(var(--s, 1));
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
    }
    .doodle.soft{ opacity: .14; }
    .doodle.tiny{ width: 44px; height: 44px; opacity: .18; }
    .doodle.big{ width: 92px; height: 92px; opacity: .12; }
    .doodle.float{ animation: vvFloat 10s ease-in-out infinite; }
    @keyframes vvFloat{
      0%,100%{ transform: translateY(0) rotate(var(--r,0deg)) scale(var(--s,1)); }
      50%{ transform: translateY(-10px) rotate(calc(var(--r,0deg) + 3deg)) scale(var(--s,1)); }
    }

    /* ICON SVGs as CSS backgrounds (inline, no extra files) */
    .icon-star{ background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20120%20120%22%3E%0A%3Cg%20fill=%22none%22%20stroke=%22%23486E4C%22%20stroke-width=%225%22%20stroke-linecap=%22round%22%3E%0A%3Cpath%20d=%22M60%2010%20L65%2045%20L110%2060%20L65%2075%20L60%20110%20L55%2075%20L10%2060%20L55%2045%20Z%22/%3E%0A%3Cpath%20d=%22M60%2026%20L62%2056%20L94%2060%20L62%2064%20L60%2094%20L58%2064%20L26%2060%20L58%2056%20Z%22%20opacity=%22.6%22/%3E%0A%3C/g%3E%3C/svg%3E"); }
    .icon-smile{ background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20120%20120%22%3E%0A%3Cg%20fill=%22none%22%20stroke=%22%2391A894%22%20stroke-width=%226%22%20stroke-linecap=%22round%22%3E%0A%3Ccircle%20cx=%2260%22%20cy=%2260%22%20r=%2246%22%20opacity=%22.22%22/%3E%0A%3Cpath%20d=%22M42%2052%20Q42%2048%2046%2048%22/%3E%0A%3Cpath%20d=%22M78%2052%20Q78%2048%2074%2048%22/%3E%0A%3Cpath%20d=%22M40%2072%20Q60%2092%2080%2072%22/%3E%0A%3C/g%3E%3C/svg%3E"); }
    .icon-coconut{ background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20180%20120%22%3E%0A%3Cg%20fill=%22none%22%20stroke=%22%233A583D%22%20stroke-width=%225%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22%3E%0A%20%20%3Cpath%20d=%22M78%2016%20C46%2020%2024%2044%2024%2068%20c0%2022%2018%2040%2044%2040%20h20%22%20/%3E%0A%20%20%3Cpath%20d=%22M102%2016%20c32%204%2054%2028%2054%2052%20c0%2022-18%2040-44%2040%20h-20%22%20/%3E%0A%20%20%3Cpath%20d=%22M92%2020%20v84%22%20opacity=%22.35%22/%3E%0A%20%20%3Cpath%20d=%22M64%2042%20h22%22%20/%3E%0A%20%20%3Cpath%20d=%22M94%2042%20h22%22%20/%3E%0A%20%20%3Cpath%20d=%22M70%2060%20c10%2010%2030%2010%2040%200%22%20opacity=%22.55%22/%3E%0A%20%20%3Cpath%20d=%22M118%2020%20c16-10%2028-10%2038%200%22%20opacity=%22.35%22/%3E%0A%3C/g%3E%3C/svg%3E"); }
    .icon-scribble{ background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20220%20120%22%3E%0A%3Cpath%20d=%22M10%2066%20C30%2036,%2056%2092,%2080%2060%20S128%2036,%20152%2060%20S190%2092,%20210%2060%22%20fill=%22none%22%20stroke=%22%23A7C7D9%22%20stroke-width=%226%22%20stroke-linecap=%22round%22/%3E%0A%3C/svg%3E"); }
    .icon-leaf{ background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20140%20140%22%3E%0A%3Cg%20fill=%22none%22%20stroke=%22%23486E4C%22%20stroke-width=%226%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22%3E%0A%3Cpath%20d=%22M24%2092%20C52%2030,%20108%2020,%20116%2040%20C124%2060,%2092%20118,%2044%20118%20C30%20118,%2020%20108,%2024%2092%20Z%22/%3E%0A%3Cpath%20d=%22M36%20108%20C62%2092,%2086%2070,%20106%2044%22%20opacity=%22.55%22/%3E%0A%3C/g%3E%3C/svg%3E"); }

    /* keep doodles behind header & content */
    header, main, footer { position: relative; z-index: 10; }

    @media (max-width: 960px){
      .doodle-layer{ opacity: .85; }
      .doodle.big{ display:none; }
    }
    @media (prefers-reduced-motion: reduce){
      .doodle.float,
      .doodles-layer .doodle{ animation: none !important; }
    }



    /* DOODLES / SCRIBBLES (decoración sutil) */
    header, main, footer { position: relative; z-index: 2; }
    .doodles-layer{
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      overflow: hidden;
      opacity: .85;
      mix-blend-mode: multiply;
    }
    .doodles-layer .doodle{
      position: absolute;
      width: var(--doodle-size, 96px);
      height: auto;
      opacity: var(--doodle-opacity, .08);

      /* keep the soft "ink" look */
      filter: brightness(0.55) sepia(1) hue-rotate(70deg) saturate(0.75) drop-shadow(0 2px 0 rgba(0,0,0,.03));
      pointer-events: none;
      mix-blend-mode: multiply;
      will-change: transform;

      /* Float settings (amp fixed; timing randomized via JS) */
      --floatAmp: 18px;
      --floatDur: 10s;
      --floatDelay: 0s;

      transform: translateY(0px) rotate(var(--doodle-rot, 0deg));
      animation: vvFloatY var(--floatDur) ease-in-out var(--floatDelay) infinite;
    }

    @keyframes vvFloatY{
      0%, 100% { transform: translateY(0px) rotate(var(--doodle-rot, 0deg)); }
      50%      { transform: translateY(calc(var(--floatAmp) * -1)) rotate(var(--doodle-rot, 0deg)); }
    }
    .doodles-layer .doodle.soft{ opacity: .08; }
    .doodles-layer .doodle.tiny{ --doodle-size: 58px; opacity: .10; }
    .doodles-layer .doodle.mid{ --doodle-size: 92px; }
    .doodles-layer .doodle.big{ --doodle-size: 140px; opacity: .10; }
    .doodles-layer .doodle.far{ opacity: .06; filter: blur(.2px) drop-shadow(0 1px 0 rgba(0,0,0,.02)); }
    @media (max-width: 820px){
      .doodles-layer .doodle.big{ --doodle-size: 110px; }
      .doodles-layer .doodle.mid{ --doodle-size: 78px; }
    }
    @media (max-width: 520px){
      .doodles-layer{ opacity: .8; }
      .doodles-layer .doodle{ opacity: .10; }
      .doodles-layer .doodle.big{ --doodle-size: 96px; }
      .doodles-layer .doodle.mid{ --doodle-size: 70px; }
      .doodles-layer .doodle.tiny{ --doodle-size: 52px; }
    }






/* --- VV FIX: ensure ONE continuous canvas (disable per-section overlays) --- */
section::before{ content: none !important; display: none !important; background: none !important; }
section{ background: transparent !important; }
/* ================================
   HOTFIX – CENTER TOONS & CARD
   (DO NOT TOUCH ANYTHING ELSE)
   ================================ */

/* 1. Center charcoal soap toon */
.toon-charcoal,
.charcoal-toon,
#toon-charcoal {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block;
}

/* 2. Center honey soap toon */
.toon-honey,
.honey-toon,
#toon-honey {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block;
}

/* 3. Center orange soap product card */
.product-card.orange,
.product-card--orange,
.product-orange {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ===== HOTFIX: force true horizontal centering for the 2 toons ===== */

/* if the toon is an <img> */
.toon-charcoal, .charcoal-toon, #toon-charcoal,
.toon-honey, .honey-toon, #toon-honey {
  position: relative !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  display: block !important;
}

/* if the <img> is inside a wrapper (common case) */
.toon-charcoal img, .charcoal-toon img, #toon-charcoal img,
.toon-honey img, .honey-toon img, #toon-honey img {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
