/*
 Theme Name:   Shoptimizer Child
 Theme URI:    https://palosantopremium.com
 Description:  Child theme para Shoptimizer en Palo Santo Premium
 Author:       Palo Santo Premium
 Template:     shoptimizer
 Version:      1.0.0
*/

/* Forzar font-display: swap en Font Awesome SOLID */
@font-face {
  font-family: "Font Awesome 6 Free"; /* o 5 Free si usas FA5 */
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-solid-900.woff2") format("woff2");
}

/* Forzar font-display: swap en Font Awesome BRANDS */
@font-face {
  font-family: "Font Awesome 6 Brands"; /* o 5 Brands si usas FA5 */
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-brands-400.woff2") format("woff2");
}

/* Font Awesome Base Classes */
.fa, .fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-solid, .fas {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.fa-brands, .fab {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

/* =============== VARIABLES Y BASE GLOBAL =============== */
:root {
  --ps-primary: #caa165;   /* Dorado/amarillo base */
  --ps-accent:  #2a7137;   /* Verde Munay */
  --ps-dark:    #1f1f1f;
  --ps-light:   #f5f0e9;

  /* Typography Standards */
  --ps-h2-size: 42px;
  --ps-p-size: 18px;
}

@media (max-width: 768px) {
  :root {
    --ps-h2-size: 32px;
    --ps-p-size: 16px;
  }
}

body {
  color: #333;
  font-size: var(--ps-p-size);
  line-height: 1.6;
}

/* Enlaces */
a {
  text-decoration: none;
}

/* Títulos globales con Amatic SC */
h1,
h2,
h3,
h4,
.section-title,
.blog-heading,
.about-title,
.title,
.cta-mystic .cta-title,
.cta_two_content h2,
.cta-three-container h2 {
  font-family: 'Amatic SC', cursive !important;
  font-weight: 700;
}

/* Global H2 Standardization */
h2,
.section-title,
.about-title,
.title,
.cta-mystic .cta-title,
.cta_two_content h2,
.cta-three-container h2,
.service-header h2,
.video-title,
.blog-heading {
  font-size: var(--ps-h2-size) !important;
}

/* Contenedor genérico */
.ps-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Botones base opcionales */
.ps-btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
}
.ps-btn-primary {
  background: var(--ps-primary);
  color: #fff;
}
.ps-btn-primary:hover {
  opacity: 0.9;
}

/* ================= HERO MUNAY – IMG COMO FONDO ================= */

/* Contenedor principal del hero */
.hero-container {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;        /* El hero siempre al alto de pantalla */
  margin-top: -20px;        /* Ajusta según el header del tema */
  overflow: hidden;
}

/* Capa de fondo que contiene la imagen */
.hero-bg {
  position: absolute;
  inset: 0;                 /* top, right, bottom, left = 0 */
  overflow: hidden;
  z-index: 0;
}

/* Imagen de fondo usando IMG, cubre todo el contenedor */
.hero-bg-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;        /* LLENA el contenedor, recortando lados si hace falta */
  display: block;
  transform: scale(1);
  animation: heroZoom 5s ease-in-out infinite alternate;
}


/* Contenido textual del hero */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.hero-content h1 {
  font-size: 160px;
  line-height: 1.05;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #ffffff;
  text-shadow: 4px 4px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 25px;
  line-height: 1.6;
  color: #f4f4f4;
  max-width: 780px;
  margin-bottom: 18px;
}

.hero-note {
  font-size: 15px;
  color: #eaeaea;
  opacity: 0.9;
  margin-bottom: 24px;
}

/* CTA botones */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-cta a {
  display: inline-block;
  padding: 12px 18px;
  background-color: #ffffff;
  color: #0e0e0e;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.hero-cta a.outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.hero-cta a:hover {
  background-color: #f4f4f4;
  color: #0e0e0e;
  transform: translateY(-1px);
}

/* Icono scroll down */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50px;
  font-size: 32px;
  color: #fff;
  text-decoration: none;
  animation: bounce 2s infinite;
  z-index: 3;
  opacity: 0.8;
}

/* ========= ANIMACIONES ========= */
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

@keyframes floatSmoke {
  0%   { transform: translateY(20%)  scale(1);    opacity: 0.15; }
  50%  { transform: translateY(-10%) scale(1.02); opacity: 0.22; }
  100% { transform: translateY(-40%) scale(1.05); opacity: 0.1; }
}

@keyframes drift {
  0%   { background-position: 0 0, 0 0; }
  100% { background-position: 1000px 800px, 600px 400px; }
}

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

/* ========= RESPONSIVE ========= */

/* Tablets / pantallas medianas */
@media (max-width: 1024px) {
  .hero-content {
    padding: 0 60px;
  }
  .hero-content h1 {
    font-size: 96px;
  }
}

/* Móviles */
@media (max-width: 768px) {
  .hero-container.hero-mobile {
    height: 100vh;          /* Ocupa todo el alto visible */
    min-height: 100vh;
    margin-top: 0;          /* Evita saltos por el header */
    display: flex;
    align-items: center;    /* Centra el contenido verticalmente */
  }

  .hero-content {
    padding: 0 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 156px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 25px;
    margin-bottom: 12px;
  }

  .hero-note {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta a {
    width: 100%;
    max-width: 280px;
    font-size: 15px;
  }

  .hero-smoke {
    width: 150%;
    opacity: 0.14;
  }

  .scroll-down {
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
  }
}

/* ================== BENEFICIOS CORTOS ================== */
.certified-boxes-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 40px 20px;
  background: #f8f8f8;
}

.certified-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  gap: 16px;
  max-width: 500px;
  flex: 1 1 300px;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.certified-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.certified-box p {
  margin: 0;
  font-family: 'Amatic SC', sans-serif;
  font-size: 24px;
  color: #2a7137;
  font-weight: 600;
}

.decor-img {
  width: 30px;
  height: auto;
  object-fit: contain;
  filter: brightness(1.1) sepia(1) hue-rotate(-20deg) saturate(4);
}

@media (max-width: 480px) {
  .certified-box {
    flex-direction: column;
    gap: 12px;
  }
}

/* ================== ABOUT ================== */
.about-summary {
  padding: 60px 20px;
  background: #ffffff;
  color: #333;
}

.about-summary-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-image {
  flex: 1 1 480px;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}

.circle-outer {
  position: absolute;
  top: 50%;
  left: -140px;
  width: 280px;
  height: 280px;
  background-color: #f5f0ea;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.circle-inner {
  position: absolute;
  top: 50%;
  left: -45px;
  width: 90px;
  height: 90px;
  background-color: #ffaf00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: #2a7137;
  transform: translateY(-50%);
  z-index: 3;
}

.about-text {
  flex: 1 1 500px;
}

.about-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: bold;
  color: #2a7137 !important;
  margin-bottom: 8px;
}

.about-title {
  margin-bottom: 12px;
  color: #2a7137 !important;
}

.about-leaf-deco img {
  width: 40px;
  margin: 12px 0;
}

.about-description,
.about-note {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 16px 0;
}

.about-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 20px 0;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #2a7137;
  font-size: 16px;
}

.benefit i {
  font-size: 28px;
  color: #2a7137;
}

@media (max-width: 768px) {
  .about-summary-container {
    flex-direction: column;
  }

  .about-benefits {
    flex-direction: column;
    gap: 16px;
  }

  .circle-outer,
  .circle-inner {
    display: none;
  }
}

/* ================== CTA TIRA AMARILLA ================== */
.cta-three-section {
  background-color: #f5f0e9;
  padding: 40px 16px;
}

.cta-three-container {
  background-color: #ffb933;
  max-width: 1140px;
  margin: 0 auto;
  padding: 32px 24px;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cta-three-container h2 {
  color: #2a2a2a;
  margin: 0;
  line-height: 1.2;
  flex: 1 1 600px;
}

.cta-three-container a {
  background-color: #364036;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  flex: 0 0 auto;
  white-space: nowrap;
  line-height: 1.3;
  transition: background-color 0.3s ease;
}

.cta-three-container a:hover {
  background-color: #2a312a;
}

@media (max-width: 768px) {
  .cta-three-section {
    padding: 16px 10px;
  }

  .cta-three-container {
    min-height: auto !important;
    /* compactamos el bloque */
    padding: 18px 14px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    row-gap: 10px !important;
  }

   .cta-three-container h2 {
    line-height: 1.25 !important;
    margin: 0 0 6px !important;        /* casi sin espacio abajo */
    text-align: center;
    flex: 1 1 0px;
  }

  .cta-three-container a {
    margin-top: 4px !important;
    width: 100%;
    max-width: 260px;
  }
}

/* ================== PILARES / SWIPER ================== */
.parallax-service-section {
  position: relative;
  min-height: 0vh;
  background-image: url('https://palosantopremium.com/wp-content/uploads/2025/11/arbol-de-palo-santo.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 0px 0;
  color: #ffffff;
  overflow: hidden;
}

.ios-parallax-fallback {
  display: none;
  background-image: url('https://palosantopremium.com/wp-content/uploads/2025/11/arbol-de-palo-santo.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
@supports (-webkit-touch-callout: none) {
  .parallax-service-section {
    background: none !important;
    background-attachment: scroll !important;
  }
  .ios-parallax-fallback {
    display: block !important;
  }
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.6);
  z-index: 1;
}

.service-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}

.service-header {
  text-align: center;
  margin-bottom: 50px;
}
.service-header p {
  /* Match .about-label */
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: bold;
  color: #caa165; /* Keep yellow/gold */
  margin-bottom: 8px;
}
.service-header h2 {
  /* Match .about-title base styles */
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 16px;
  /* Size is controlled by global variables or specific overrides if needed, 
     but user asked to match size of about-title (h2) */
}
.leaf-deco img {
  width: 42px;
  height: auto;
  margin-top: 10px;
}

/* Swiper cards */
.swiper-slide {
  display: flex;
  height: auto;
}
.service-card {
  background: #ffffff; /* Already white, but explicit */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 450px;
}
.service-card .card-image {
  width: 100%;
  aspect-ratio: 3 / 3;
  overflow: hidden;
}
.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.service-card:hover .card-image img {
  transform: scale(1.05);
}
.service-card .card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.service-card .card-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #f3b43f; /* Changed to yellow */
}
.service-card .card-content p {
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* Swiper controles */
.swiper-button-next,
.swiper-button-prev {
  color: #ffaf00; /* Changed to yellow */
  top: 30%;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px;
}
.swiper-pagination-bullet-active {
  background: #ffaf00; /* Changed to yellow */
}

/* ================== CTA TWO ================== */
#cta-two {
  background: #f5f0e9;
  padding: 50px 0;
  font-family: 'Inter', sans-serif;
}

#cta-two .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

.cta-two-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.cta-two-col {
  flex: 1;
  min-width: 250px;
}

.cta-two-col.icon-title {
  flex: 1.5;
}

.cta-two-col.text {
  flex: 1.6;
}

.cta-two-col.button {
  flex: 1.1;
  display: flex;
  justify-content: flex-start;
}

.cta_two_icon_wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta_two_icon_box {
  width: 60px;
  height: 60px;
  background: none;
  color: #2a7137;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta_two_content h2 {
  line-height: 1.3;
  color: #2a7137;
  margin: 0;
}

.cta_two_text p {
  margin: 0;
  color: #888;
  line-height: 1.6;
  font-weight: 500;
}

.cta-button {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 22px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  text-align: left;
  line-height: 1.4;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
  background: #2a7137;
}

.cta-button:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-two-row {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .cta-two-col.button {
    justify-content: center;
  }

  .cta-button {
    width: 100%;
  }

  .cta_two_icon_wrap {
    flex-direction: column;
    gap: 12px;
  }
}

/* ================== QUALITY / VIDEO ================== */
.video-one-section {
  position: relative;
  background-image: url('https://palosantopremium.com/wp-content/uploads/2025/12/arbol-de-palo-santo-1.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-attachment: fixed;
  padding: 80px 20px;
  color: #ffffff;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.video-one-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.video-one-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.video-subtitle {
  /* Match .about-label */
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: bold;
  margin-bottom: 8px;
}

.video-title {
  margin: 20px 0;
  color: #f3b43f; /* Yellow as requested */
  font-size: 56px; /* Larger size */
  font-weight: 700;
}

.video-text {
  max-width: 800px;
  margin: 2rem auto;
  line-height: 1.8;
}

.video-text p {
  margin-bottom: 1rem;
}

.video-embed-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .video-one-section {
    background-size: cover;
    background-attachment: scroll;
    padding: 60px 16px;
  }
}

/* ================== FEATURED PRODUCTS ================== */
.featured-products-wrapper {
  padding: 60px 20px;
  background: #fafafa;
}

.featured-products-wrapper .container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  margin-bottom: 40px;
  text-align: center;
  color: #1f1f1f;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  transition: box-shadow 0.3s ease;
  min-width: 240px;
  flex: 0 0 auto;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 16px;
}

.product-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
}

.product-card a {
  text-decoration: none;
  color: var(--ps-accent);
}

.product-card a:hover {
  color: #1e4d29;
}

.product-card .price {
  font-size: 16px;
  color: #444;
  margin-bottom: 14px;
}

.product-card .btn {
  display: inline-block;
  background-color: var(--ps-accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.product-card .btn:hover {
  background-color: #225c2c;
}

@media (max-width: 768px) {
  .product-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .product-card {
    scroll-snap-align: start;
    min-width: 80%;
    max-width: 80%;
  }
}

@media (max-width: 480px) {
  .product-card {
    min-width: 90%;
    max-width: 90%;
  }
}

/* ================== MARKETPLACES ================== */
.brand-one {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 30px 0;
}

.brand-one .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.brand-one-carousel {
  position: relative;
}

.logos-viewport {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 30px;
  min-width: 100%;
}

.single_brand_item {
  scroll-snap-align: center;
  flex: 0 0 auto;
}

.single_brand_item img {
  display: block;
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 0.9;
  transition: opacity 300ms ease, filter 300ms ease;
}

.single_brand_item img:hover {
  opacity: 1;
}

/* ================== WHY CHOOSE / BENEFITS ================== */
.benefits-section {
  position: relative;
  background-color: #3b4636;
  color: #fff;
  padding: 100px 20px;
  overflow: hidden;
  z-index: 0;
  font-family: 'Inter', sans-serif;
}

.benefits-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-image: url('https://palosantopremium.com/wp-content/uploads/2025/11/DRK0804-1-scaled.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  transform: translateY(0);
  transition: transform 0.2s ease-out;
}

@supports (-webkit-touch-callout: none) {
  .benefits-bg {
    background-attachment: scroll !important;
    transform: none !important;
  }
}

.benefits-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: -1;
}

.benefits-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.benefits-header {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.header-left {
  flex: 1 1 0px;
}

.header-right {
  flex: 1 1 0px;
}

.subtitle {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #f2d99f;
  font-weight: 600;
  margin-bottom: 8px;
}

.title {
  color: #fff !important;
  margin: 0 0 12px;
}

.leaf img {
  width: 48px;
}

.description {
  line-height: 1.7;
  color: #ccc;
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
  transition: background 0.3s ease;
  backdrop-filter: blur(2px);
}

.benefit-card h3 {
  color: #f3b43f; /* Yellow title as requested */
  margin-bottom: 12px;
}

.benefit-card:hover {
  background: #fbb933;
  color: #1f1f1f;
}

.benefit-card:hover h3,
.benefit-card:hover p {
  color: #1f1f1f;
}

@media (max-width: 768px) {
  .benefits-header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
}

/* ================== CTA MYSTIC (CTA 3) ================== */
.cta-mystic {
  background-color: #f5f0e9;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 10px;
  text-align: center;
  position: relative;
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
}

.cta-mystic .cta-title {
  line-height: 1.3;
  color: #2a7137;
  margin-bottom: 30px;
  text-shadow: 1px 1px 0 #e6d2a0;
}

.cta-btn {
  display: inline-block;
  background-color: #f3b43f;
  color: #2b2b2b;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease-in-out;
}

.cta-btn:hover {
  background-color: #e6a628;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

@media (max-width: 600px) {
  .cta-btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }
}

/* ================== CTA HERO FINAL ================== */

/* ================== BLOG PREVIEW ================== */
.blog-preview-section {
  background-color: #f5f0e9;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 60px 20px;
  font-family: 'DM Sans', sans-serif;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-heading {
  color: #2a7137;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px #e4d4a0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fffefc;
  border: 1px solid #e6e1d6;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

.blog-card .blog-content {
  padding: 18px;
}

.blog-card h3 {
  font-size: 22px;
  color: #2a2a2a;
  margin: 0 0 10px;
  line-height: 1.2;
}

.blog-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.blog-card a.read-more {
  display: inline-block;
  margin-top: 12px;
  color: #2a7137;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card a.read-more:hover {
  color: #1a4f27;
}

@media (max-width: 600px) {
  /* ... */
}

/* ================== GALLERY CAROUSEL ================== */
.gallery-carousel {
  overflow: hidden;
  padding: 40px 0;
  background: #f9f9f3;
}

.carousel-track {
  display: flex;
  gap: 24px;
  animation: scrollLoop 30s linear infinite;
  width: max-content;
  padding: 0 20px;
}

.carousel-item {
  flex: 0 0 calc(25% - 18px);
  min-width: 220px;
  max-width: 260px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.carousel-item:hover img {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  cursor: zoom-out;
}

@media (max-width: 768px) {
  .carousel-item {
    flex: 0 0 calc(50% - 12px);
  }
  .carousel-track {
    gap: 16px;
  }
}

@keyframes scrollLoop {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

/* Imagen decorativa fija arriba del sitio */
body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}

/* Fondo barra nav */
.col-full-nav {
  background:
    url('https://palosantopremium.com/wp-content/uploads/2025/11/header-bg.webp') no-repeat center top,
    linear-gradient(to bottom, #ffae0000, #ffffff00);
  background-size: cover, auto;
  background-color: transparent !important;
  z-index: 101;
  box-shadow: none !important;
}

/* === NAV MOBILE: DEGRADADO AMARILLO → NEGRO === */
@media (max-width: 768px) {
  .col-full-nav {
    background-image: linear-gradient(to bottom, #ffaf00 0%, #000000 100%) !important;
    background-color: transparent !important;
    box-shadow: none !important;
  }
}

/* Ajuste header sticky */
.admin-bar.sticky-d.header-4:not(.woocommerce-checkout) .header-4-container {
  top: 58px;
}

.sticky-d.header-4 .header-4-container {
  position: sticky;
  top: 0;
  margin-top: 60px;
}

/* FOOTER custom */
.site-footer {
  background-image: url('https://palosantopremium.com/wp-content/uploads/2025/11/footer_munay.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
  padding: 80px 5% 40px;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.site-footer > * {
  position: relative;
  z-index: 2;
}

.site-footer,
.site-footer p,
.site-footer li,
.site-footer a {
  color: #fff !important;
  font-size: 15px;
  line-height: 1.7;
}

.site-footer h4 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #fff;
  position: relative;
}

.site-footer h4::after {
  content: "";
  width: 24px;
  height: 2px;
  background-color: #f3b43f;
  display: block;
  margin-top: 6px;
}

.site-footer .social-icons a {
  display: inline-block;
  background: #fff;
  color: #333;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.site-footer .social-icons a:hover {
  background-color: #f3b43f;
  color: #000;
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}

.site-footer .footer-bottom a {
  color: #f3b43f;
  margin-left: 16px;
  text-decoration: none;
}

.site-footer .footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}

/* Aseguramos que el header pueda tener pseudo-elementos posicionados */
.site-header {
  position: relative;
  z-index: 20; /* por encima del contenido de la página */
}

/* --- Adorno en desktop: mantenemos el actual sobre el menú principal --- */
#menu-main-menu {
  position: relative;
  z-index: 1000;
}

#menu-main-menu::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url('https://palosantopremium.com/wp-content/uploads/2025/11/header-bg-1.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: 999;
  pointer-events: none;
}

/* --- Versión móvil: colgamos el mismo adorno del header completo --- */
@media (max-width: 768px) {
  /* En móvil el UL del menú se oculta, así que usamos el header */
  .site-header::before {
    content: "";
    position: absolute;
    top: 0;                /* pegado arriba del header */
    left: 0;
    width: 100%;
    height: 40px;          /* un poco más bajo para móvil */
    background-image: url('https://palosantopremium.com/wp-content/uploads/2025/11/header-bg-1.webp');
    background-repeat: no-repeat;
    background-size: cover; /* que rellene */
    background-position: center top;
    z-index: 15;
    pointer-events: none;
  }

  /* Ajustamos la barra para que no tape el adorno */
  .header-4-container,
  .shoptimizer-header {
    margin-top: 40px; /* separa el contenido del adorno */
  }

  /* Opcional: el pseudo del menú puede ser más pequeño o desactivarse para no duplicar */
  #menu-main-menu::before {
    top: -40px;
    height: 40px;
    background-size: contain;
  }
}

/* 1. Quitar adorno global pegado arriba */
body::before {
  content: none !important;
}

.site-header::before {
  content: none !important;
}

/* 2. En móvil, dibujar el adorno debajo de la barra de búsqueda */
@media (max-width: 768px) {

  /* Ajusta este selector si tu contenedor de búsqueda se llama distinto */
  .site-header .site-search {
    position: relative;
    margin-bottom: 40px; /* deja espacio para el adorno */
  }

  .site-header .site-search::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;              /* justo por debajo de la search bar */
    height: 40px;
    padding-bottom: -80px;
    background-image: url('https://palosantopremium.com/wp-content/uploads/2025/11/header-bg-1.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    pointer-events: none;
    z-index: -1;                /* queda por detrás del contenido de la search */
  }
}

/* === MOBILE: rasgado debajo del buscador, sin fondo blanco detrás === */
@media (max-width: 768px) {

  /* Quitamos fondo blanco del contenedor y del formulario de búsqueda */
  .site-header .site-search,
  .site-header .site-search form {
    background: transparent !important;
  }

  .site-header .site-search {
    position: relative;
    margin-bottom: 0;      /* que no meta extra gap abajo */
    padding-bottom: 0;  /* espacio para que quepa el rasgado */
    z-index: 20;
  }

  .site-header .site-search::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;

    /* Colgamos la imagen justo debajo del search */
    top: 100%;                /* empieza al finalizar el bloque de búsqueda */
    transform: translateY(0px); 
    /* ↑ Baja la imagen "la mitad" hacia el contenido.
       Sube o baja este valor (p.e. -10px, -30px) según cómo veas el rasgado. */

    height: 80px;             /* más alto para que el rasgado quede bien visible */
    background-image: url('https://palosantopremium.com/wp-content/uploads/2025/11/header-bg.webp');
    background-repeat: no-repeat;
    z-index: 19;              /* por debajo de los elementos del header, pero por delante del fondo */
  }
}

@media (max-width: 768px) {
  .site-header .site-search::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    transform: translateY(0px); /* puedes jugar entre -5px y -20px */
    
    /* 🔧 Ajuste de tamaño “natural” */
    height: 10px; /* prueba 40–60px según cómo veas el rasgado */
    background-image: url('https://palosantopremium.com/wp-content/uploads/2025/11/header-bg.webp');
    background-repeat: no-repeat;
    
    /* 👉 Aquí el cambio importante */
    background-size: 100% auto;   /* ancho al 100% del contenedor */
    background-position: center bottom;

    pointer-events: none;
    z-index: 19;
  }
}

/* ============= HERO PREMIUM PALO SANTO ============= */
.hero-palo-santo {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 480px;
  max-height: 900px;
  overflow: hidden;
  margin-top: -20px;
}

.hero-palo-santo-bg {
  position: absolute;
  inset: 0;
}

.hero-palo-santo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
}

.hero-palo-santo-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(0,0,0,0.2) 0, transparent 40%),
              linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.85) 100%);
}

.hero-palo-santo-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
}

.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.hero-palo-santo-content h1 {
  font-size: clamp(2.3rem, 3vw, 3.1rem);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.hero-subtitle {
  font-size: 25px;
  max-width: 680px;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.hero-badges span {
  font-size: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(4px);
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffce3a 0%, #f4a000 100%);
  color: #2b2105;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
  white-space: normal;
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
  background: linear-gradient(135deg, #ffd85a 0%, #ffb11a 100%);
}

.hero-mini-note {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* ============= SECTIONS GENERALES ============= */
.ps-section {
  padding: 3.5rem 1.5rem;
  max-width: 1040px;
  margin: 0 auto;
  line-height: 1.7;
  color: #222;
}

.ps-narrow {
  max-width: 900px;
}

.ps-light {
  background: #f8f8f8;
}

.ps-section h2 {
  margin-bottom: 1.2rem;
}

.ps-section p {
  margin-bottom: 1rem;
}

.ps-section ul {
  padding-left: 1.2rem;
  margin: 0;
}

.ps-section ul li {
  margin-bottom: 0.65rem;
}

/* GRID FORMATS */
.ps-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem 1.5rem;
  margin-top: 1rem;
}

/* RELATED PRODUCTS / INTERNAL LINKS */
.ps-related {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.ps-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.ps-related-card {
  border-radius: 12px;
  padding: 1.2rem 1.3rem;
  border: 1px solid #ececec;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}

.ps-related-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.ps-related-card h3 a {
  color: #222;
  text-decoration: none;
}

.ps-related-card h3 a:hover {
  color: #c88b1f;
  text-decoration: underline;
}

/* CTA BLOQUE */
.ps-cta {
  background: radial-gradient(circle at top left, #ffe79a 0, #f4b641 28%, #2b1703 100%);
  color: #fff;
}

.ps-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ps-cta-inner h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.ps-cta-inner p {
  max-width: 720px;
  margin: 0 auto 1.5rem auto;
}

.ps-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.ps-btn-main,
.ps-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.ps-btn-main {
  background: #000;
  color: #ffde78;
  border: 1px solid rgba(0,0,0,0.8);
}

.ps-btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.7);
}

/* FAQ */
.ps-faq h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}

.ps-faq p {
  margin-bottom: 0.2rem;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
  .hero-palo-santo {
    height: 100vh;
    min-height: 520px;
    margin-top: 0;
  }

  .hero-palo-santo-content {
    align-items: flex-start;
    padding: 4.5rem 1.25rem 2.5rem;
  }

  .hero-palo-santo-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 25px;
  }

  .hero-badges span {
    font-size: 0.8rem;
  }

  .ps-section {
    padding: 2.8rem 1.25rem;
  }
}

/* ============= HERO PALO SANTO WHOLESALE ============= */
.hero-wholesale {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 480px;
  max-height: 900px;
  overflow: hidden;
  margin-top: -20px;
}

.hero-wholesale-bg {
  position: absolute;
  inset: 0;
}

.hero-wholesale-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
}

.hero-wholesale-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(0,0,0,0.25) 0, transparent 45%),
              linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.85) 100%);
}

.hero-wholesale-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
}

/* Reutilizamos .hero-kicker, .hero-badges, .hero-cta-btn, etc. del otro hero.
   Si no los tienes aún, puedes copiarlos también: */

.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.hero-wholesale-content h1 {
  font-size: clamp(2.3rem, 3vw, 3.1rem);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.hero-subtitle {
  font-size: 25px;
  max-width: 680px;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.hero-badges span {
  font-size: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffce3a 0%, #f4a000 100%);
  color: #2b2105;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
  white-space: normal;
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
  background: linear-gradient(135deg, #ffd85a 0%, #ffb11a 100%);
}

.hero-mini-note {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* ============= SECCIONES (si aún no las tienes) ============= */
.ps-section {
  padding: 3.5rem 1.5rem;
  max-width: 1040px;
  margin: 0 auto;
  line-height: 1.7;
  color: #222;
}

.ps-narrow {
  max-width: 900px;
}

.ps-light {
  background: #f8f8f8;
}

.ps-section h2 {
  margin-bottom: 1.2rem;
}

.ps-section p {
  margin-bottom: 1rem;
}

.ps-section ul {
  padding-left: 1.2rem;
  margin: 0;
}

.ps-section ul li {
  margin-bottom: 0.65rem;
}

.ps-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem 1.5rem;
  margin-top: 1rem;
}

/* CTA BLOQUE (reutilizado) */
.ps-cta {
  background: radial-gradient(circle at top left, #ffe79a 0, #f4b641 28%, #2b1703 100%);
  color: #fff;
}

.ps-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ps-cta-inner h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.ps-cta-inner p {
  max-width: 720px;
  margin: 0 auto 1.5rem auto;
}

.ps-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.ps-btn-main,
.ps-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.ps-btn-main {
  background: #000;
  color: #ffde78;
  border: 1px solid rgba(0,0,0,0.8);
}

.ps-btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.7);
}

/* FAQ */
.ps-faq h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}

.ps-faq p {
  margin-bottom: 0.2rem;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
  .hero-wholesale {
    height: 100vh;
    min-height: 520px;
    margin-top: 0;
  }

  .hero-wholesale-content {
    align-items: flex-start;
    padding: 4.5rem 1.25rem 2.5rem;
  }

  .hero-wholesale-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 25px;
  }

  .hero-badges span {
    font-size: 0.8rem;
  }

  .ps-section {
    padding: 2.8rem 1.25rem;
  }
}

/* ============= HERO BENEFITS & PROPERTIES ============= */
.hero-benefits {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 480px;
  max-height: 900px;
  overflow: hidden;
  margin-top: -20px;
}

.hero-benefits-bg {
  position: absolute;
  inset: 0;
}

.hero-benefits-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
}

.hero-benefits-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(0,0,0,0.3) 0, transparent 45%),
              linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.9) 100%);
}

.hero-benefits-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
}

.hero-benefits-content h1 {
  font-size: clamp(2.3rem, 3vw, 3.1rem);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

/* Si no tienes aún estos estilos globales de hero, puedes usarlos: */
.hero-subtitle {
  font-size: 25px;
  max-width: 680px;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-badges span {
  font-size: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
}

/* Notita de sección (ya usada en otras páginas, opcional) */
.ps-note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.75rem;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
  .hero-benefits {
    height: 100vh;
    min-height: 520px;
    margin-top: 0;
  }

  .hero-benefits-content {
    padding: 4.5rem 1.25rem 2.5rem;
  }

  .hero-benefits-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 25px;
  }

  .hero-badges span {
    font-size: 0.8rem;
  }
}

/* ============= HERO GUARANTEES & CUSTOMS ============= */
.hero-guarantees {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 480px;
  max-height: 900px;
  overflow: hidden;
  margin-top: -20px;
}

.hero-guarantees-bg {
  position: absolute;
  inset: 0;
}

.hero-guarantees-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
}

.hero-guarantees-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(0,0,0,0.32) 0, transparent 40%),
              linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.9) 100%);
}

.hero-guarantees-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
}

.hero-guarantees-content h1 {
  font-size: clamp(2.3rem, 3vw, 3.1rem);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-guarantees {
    height: 100vh;
    min-height: 520px;
    margin-top: 0;
  }

  .hero-guarantees-content {
    padding: 4.5rem 1.25rem 2.5rem;
  }

  .hero-guarantees-content h1 {
    font-size: 2rem;
  }
}

/* ============= HERO EXPORT & CUSTOMS ============= */
.hero-export {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 480px;
  max-height: 900px;
  overflow: hidden;
  margin-top: -20px; /* ajústalo según tu header */
}

.hero-export-bg {
  position: absolute;
  inset: 0;
}

.hero-export-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.hero-export-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(0,0,0,0.35) 0, transparent 40%),
              linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.9) 100%);
}

.hero-export-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
}

.hero-export-content h1 {
  font-size: clamp(2.3rem, 3vw, 3.1rem);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-export {
    height: 100vh;
    min-height: 520px;
    margin-top: 0;
  }

  .hero-export-content {
    padding: 4.5rem 1.25rem 2.5rem;
  }

  .hero-export-content h1 {
    font-size: 2rem;
  }
}

/* ============= HERO LEGAL FORESTRY GUIDE ============= */
.hero-legal {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 480px;
  max-height: 900px;
  overflow: hidden;
  margin-top: -20px; /* ajusta según la altura de tu header */
}

.hero-legal-bg {
  position: absolute;
  inset: 0;
}

.hero-legal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.hero-legal-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 0, 0, 0.3) 0, transparent 40%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.hero-legal-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
}

.hero-legal-content h1 {
  font-size: clamp(2.3rem, 3vw, 3.1rem);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

/* Meta / subtítulos reutilizando patrón del home */
.ps-meta {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-legal {
    height: 100vh;
    min-height: 520px;
    margin-top: 0;
  }

  .hero-legal-content {
    padding: 4.5rem 1.25rem 2.5rem;
  }

  .hero-legal-content h1 {
    font-size: 2rem;
  }
}

/* ============= HERO OUR CLIENTS WORLDWIDE ============= */
.clients-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 480px;
  max-height: 900px;
  overflow: hidden;
  margin-top: -20px; /* ajusta según header */
}

.clients-hero-bg {
  position: absolute;
  inset: 0;
}

.clients-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.clients-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 0, 0, 0.35) 0, transparent 40%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.clients-hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
}

/* Reutiliza patrón de otros heroes */
.clients-hero-content h1 {
  font-size: clamp(2.3rem, 3vw, 3.1rem);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #f4f4f4;
  opacity: 0.9;
}

.hero-subtitle {
  max-width: 44rem;
  font-size: 25px;
  font-weight: 400;
}

/* ============= GRID & CARDS ============= */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  align-items: flex-start;
}

.clients-grid--tight {
  gap: 1.5rem;
}

.clients-grid--faq {
  gap: 1.25rem;
}

.clients-card {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.clients-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #222;
}

/* ============= TESTIMONIALS ============= */
.clients-testimonial {
  background: #fff7e6;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid #fbbf24;
  font-style: italic;
}

.clients-testimonial-meta {
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.9rem;
  color: #555;
}

/* ============= FAQ CARDS ============= */
.clients-faq {
  background: #f3f3f3;
  border-radius: 10px;
  padding: 1.25rem 1.4rem;
}

.clients-faq h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  color: #222;
}

/* Footer text block */
.clients-footer {
  text-align: center;
  font-size: 0.95rem;
  color: #555;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
  .clients-hero {
    height: 100vh;
    min-height: 520px;
    margin-top: 0;
  }

  .clients-hero-content {
    padding: 4.5rem 1.25rem 2.5rem;
  }

  .clients-hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }
}

/* ============= HERO OTHER PRODUCTS ============= */
.other-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 480px;
  max-height: 900px;
  overflow: hidden;
  margin-top: -20px; /* ajusta según el header */
}

.other-hero-bg {
  position: absolute;
  inset: 0;
}

.other-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.other-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 0, 0, 0.3) 0, transparent 40%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.other-hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
}

.other-hero-content h1 {
  font-size: clamp(2.3rem, 3vw, 3.1rem);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

/* Reutiliza la clase .hero-kicker / .hero-subtitle definida antes si ya existe;
   si no existe, esto asegura estilo consistente: */
.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #f4f4f4;
  opacity: 0.9;
}

.hero-subtitle {
  max-width: 42rem;
  font-size: 25px;
  font-weight: 400;
}

/* ============= GRID & CARDS OTHER PRODUCTS ============= */
.other-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.other-card {
  background: #fafafa;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.other-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
  color: #222;
}

/* Listado de usos */
.other-list {
  list-style: disc;
  padding-left: 1.25rem;
}

.other-list li + li {
  margin-top: 0.4rem;
}

/* FAQ grid */
.other-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.other-faq-card {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 1.25rem 1.4rem;
}

.other-faq-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  color: #2a7137;
}

/* Contact line */
.ps-contact {
  margin-top: 1.75rem;
  font-size: 0.98rem;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
  .other-hero {
    height: 100vh;
    min-height: 520px;
    margin-top: 0;
  }

  .other-hero-content {
    padding: 4.5rem 1.25rem 2.5rem;
  }

  .other-hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }
}

/* ========== CTA HERO FINAL CON FORMULARIO (MEJORADO) ========== */
.cta-hero {
  position: relative;
  padding: 5rem 2rem;
  background: url('https://palosantopremium.com/wp-content/uploads/2025/11/gallery-1-img-3.webp') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.cta-hero .cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.88),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 0;
}

.cta-hero .cta-content {
  position: relative;
  z-index: 1;
  /* MÁS ANCHO EN PANTALLA */
  max-width: 1320px;
  margin: 0 auto;
}

.cta-hero .cta-content--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: flex-start;
}

/* Columna izquierda (texto) */
.cta-hero .cta-title {
  font-size: clamp(2.1rem, 3.1vw, 2.8rem);
  margin-bottom: 1rem;
  color: #f3b43f; /* Yellow as requested */
}

.cta-hero .cta-description {
  font-size: 1rem;
  max-width: 42rem;
  margin-bottom: 1.25rem;
}

.cta-hero .cta-bullets {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1.8rem;
  font-size: 0.98rem;
}

.cta-hero .cta-bullets li + li {
  margin-top: 0.35rem;
}

.cta-hero .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.cta-hero .btn-whatsapp,
.cta-hero .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease;
}

.cta-hero .btn-whatsapp {
  background: #25d366;
  color: #0c1a10;
}

.cta-hero .btn-whatsapp:hover {
  background: #1ac056;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.cta-hero .btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.cta-hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Columna derecha (FORM) con fondo blanco 40% y efecto glass */
.cta-hero .cta-form-wrap {
  background: rgba(255, 255, 255, 0.4); /* 40% blanco */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* Textos dentro del form: ahora oscuros para mejor contraste */
.cta-hero .cta-form-wrap,
.cta-hero .cta-form-wrap p,
.cta-hero .cta-form-wrap .form-intro,
.cta-hero .cta-form-wrap .form-note {
  color: #111;
}

.cta-hero .upsells-form-placeholder .form-intro {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.cta-hero .form-note {
  font-size: 0.78rem;
  opacity: 0.92;
  margin-top: 0.5rem;
}

/* Botón que dispara el formulario (bien visible sobre el fondo claro) */
.cta-hero .form-trigger-btn {
  display: inline-block;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  background: #166534;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition:
    background-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.cta-hero .form-trigger-btn:hover {
  background: #15803d;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

/* Skeleton de carga (se mantiene) */
.cta-hero .form-skeleton {
  margin-top: 1rem;
}

.cta-hero .form-skeleton .line {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.25)
  );
  margin-bottom: 0.4rem;
  animation: shimmer 1.6s infinite linear;
}

.cta-hero .form-skeleton .line.short {
  width: 70%;
}

.cta-hero .form-skeleton .line:not(.short) {
  width: 100%;
}

@keyframes shimmer {
  0% {
    background-position: -120px 0;
  }
  100% {
    background-position: 120px 0;
  }
}

/* ========== RESPONSIVE CTA HERO ========== */
@media (max-width: 900px) {
  .cta-hero {
    padding: 3.5rem 1.5rem;
  }

  .cta-content--split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-form-wrap {
    margin-top: 0.5rem;
  }
}

@media (max-width: 600px) {
  .cta-hero {
    padding: 3rem 1.25rem;
  }

  .cta-hero .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-hero .btn-whatsapp,
  .cta-hero .btn-secondary {
    justify-content: center;
  }
}

/* === Estilos específicos para la página de Essential Oil === */
:root {
  --brand: #00694e;
  --hover: #008764;
  --border: #e5e7eb;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
}

.wrap {
  max-width: 980px;
  margin: auto;
  padding: 1.5rem;
}

h1,
h2,
h3 {
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

img {
  max-width: 100%;
  border-radius: 6px;
  height: auto;
}

a.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

a.btn:hover {
  background: var(--hover);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

th,
td {
  border: 1px solid var(--border);
  padding: 0.6rem;
  text-align: left;
}

th {
  background: #fafafa;
}

ul.check {
  list-style: "✅ ";
  padding-left: 1.25rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem;
  background: #fff;
}

blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: #fafafa;
  border-left: 4px solid var(--brand);
  border-radius: 4px;
  font-style: italic;
}

/* === Palo Santo Powder Page Styles === */
:root {
  --brand: #00694e;
  --hover: #008764;
  --border: #e5e7eb;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
}

.wrap {
  max-width: 980px;
  margin: auto;
  padding: 1.5rem;
}

h1, h2, h3 {
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

img {
  max-width: 100%;
  border-radius: 6px;
  height: auto;
}

a.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

a.btn:hover {
  background: var(--hover);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

th, td {
  border: 1px solid var(--border);
  padding: 0.6rem;
  text-align: left;
}

th {
  background: #fafafa;
}

ul.check {
  list-style: "✅ ";
  padding-left: 1.25rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem;
  background: #fff;
}

blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: #fafafa;
  border-left: 4px solid var(--brand);
  border-radius: 4px;
  font-style: italic;
}

/* === SERFOR Compliance Page Styles === */
:root {
  --brand: #00694e;
  --hover: #008764;
  --border: #e5e7eb;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
}

.wrap {
  max-width: 980px;
  margin: auto;
  padding: 1.5rem;
}

h1, h2, h3 {
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

img {
  max-width: 100%;
  border-radius: 6px;
  height: auto;
}

a.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

a.btn:hover {
  background: var(--hover);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

th, td {
  border: 1px solid var(--border);
  padding: 0.6rem;
  text-align: left;
}

th {
  background: #fafafa;
}

ul.check {
  list-style: "✅ ";
  padding-left: 1.25rem;
}

.timeline {
  border-left: 3px solid var(--brand);
  padding-left: 1rem;
  margin-left: 0;
}

/* === Palo Santo Sticks Page Styles === */
:root {
  --brand: #00694e;
  --hover: #008764;
  --border: #e5e7eb;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
}

.wrap {
  max-width: 980px;
  margin: auto;
  padding: 1.5rem;
}

h1, h2, h3 {
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

img {
  max-width: 100%;
  border-radius: 6px;
  height: auto;
}

a.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

a.btn:hover {
  background: var(--hover);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

th, td {
  border: 1px solid var(--border);
  padding: 0.6rem;
  text-align: left;
}

th {
  background: #fafafa;
}

ul.check {
  list-style: "✅ ";
  padding-left: 1.25rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem;
  background: #fff;
}

blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: #fafafa;
  border-left: 4px solid var(--brand);
  border-radius: 4px;
  font-style: italic;
}

.timeline {
  border-left: 3px solid var(--brand);
  padding-left: 1rem;
  margin-left: 0;
}

/* === Palo Santo Pricing & MOQ Page Styles === */
:root {
  --brand: #00694e;
  --hover: #008764;
  --border: #e5e7eb;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
}

.wrap {
  max-width: 980px;
  margin: auto;
  padding: 1.5rem;
}

h1, h2, h3 {
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

a.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

a.btn:hover {
  background: var(--hover);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

th, td {
  border: 1px solid var(--border);
  padding: 0.6rem;
  text-align: left;
}

th {
  background: #fafafa;
}

ul.check {
  list-style: "✅ ";
  padding-left: 1.25rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem;
  background: #fff;
}

blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: #fafafa;
  border-left: 4px solid var(--brand);
  border-radius: 4px;
  font-style: italic;
}

.timeline {
  border-left: 3px solid var(--brand);
  padding-left: 1rem;
  margin-left: 0;
}

/* === Palo Santo Shipping Page Styles === */
:root {
  --brand: #00694e;
  --hover: #008764;
  --border: #e5e7eb;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
}

.wrap {
  max-width: 980px;
  margin: auto;
  padding: 1.5rem;
}

h1, h2, h3 {
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

a.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

a.btn:hover {
  background: var(--hover);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

th, td {
  border: 1px solid var(--border);
  padding: 0.6rem;
  text-align: left;
}

th {
  background: #fafafa;
}

ul.check {
  list-style: "✅ ";
  padding-left: 1.25rem;
}

.timeline {
  border-left: 3px solid var(--brand);
  padding-left: 1rem;
  margin-left: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem;
  background: #fff;
}

/* === Palo Santo Case Studies Styles === */
:root {
  --brand: #00694e;
  --hover: #008764;
  --border: #e5e7eb;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
}

.wrap {
  max-width: 980px;
  margin: auto;
  padding: 1.5rem;
}

h1, h2, h3 {
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

a.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

a.btn:hover {
  background: var(--hover);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem;
  background: #fff;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.95rem;
}

th, td {
  border: 1px solid var(--border);
  padding: 0.6rem;
  text-align: left;
}

th {
  background: #fafafa;
}

ul.check {
  list-style: "✅ ";
  padding-left: 1.25rem;
}

/* === Palo Santo ROI Insights Page Styles === */
:root {
  --brand: #00694e;
  --hover: #008764;
  --border: #e5e7eb;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
}

.wrap {
  max-width: 980px;
  margin: auto;
  padding: 1.5rem;
}

h1, h2, h3 {
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

a.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

a.btn:hover {
  background: var(--hover);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem;
  background: #fff;
  transition: box-shadow .2s;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

blockquote {
  background: #fafafa;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--brand);
  border-radius: 4px;
  font-style: italic;
  margin: 1.25rem 0;
}

ul.check {
  list-style: "✅ ";
  padding-left: 1.25rem;
}

/* === Munay Private Label Styles === */
:root {
  --brand: #00694e;
  --hover: #008764;
  --border: #e5e7eb;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
}

.wrap {
  max-width: 980px;
  margin: auto;
  padding: 1.5rem;
}

h1, h2, h3 {
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

a.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

a.btn:hover {
  background: var(--hover);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

th, td {
  border: 1px solid var(--border);
  padding: 0.6rem;
  text-align: left;
}

th {
  background: #fafafa;
}

ul.check {
  list-style: "✅ ";
  padding-left: 1.25rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem;
  background: #fff;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: #fafafa;
  border-left: 4px solid var(--brand);
  border-radius: 4px;
  font-style: italic;
}

.timeline {
  border-left: 3px solid var(--brand);
  padding-left: 1rem;
  margin-left: 0;
}

:root {
  --brand: #00694e;
  --hover: #008764;
  --border: #e5e7eb;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
}

.wrap {
  max-width: 980px;
  margin: auto;
  padding: 1.5rem;
}

h1, h2, h3 {
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

a.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

a.btn:hover {
  background: var(--hover);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

th, td {
  border: 1px solid var(--border);
  padding: 0.6rem;
  text-align: left;
}

th {
  background: #fafafa;
}

ul.check {
  list-style: "✅ ";
  padding-left: 1.25rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem;
  background: #fff;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: #fafafa;
  border-left: 4px solid var(--brand);
  border-radius: 4px;
  font-style: italic;
}

.timeline {
  border-left: 3px solid var(--brand);
  padding-left: 1rem;
  margin-left: 0;
}

:root {
  --brand: #00694e;
  --hover: #008764;
  --border: #e5e7eb;
}

body {
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  color: #222;
  line-height: 1.6;
  margin: 0;
}

.wrap {
  max-width: 980px;
  margin: auto;
  padding: 1.5rem;
}

h1, h2, h3 {
  line-height: 1.3;
  margin: 0 0 .5rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

a.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

a.btn:hover {
  background: var(--hover);
}

ul.check {
  list-style: "✅ ";
  padding-left: 1.25rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem;
  background: #fff;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: #fafafa;
  border-left: 4px solid var(--brand);
  border-radius: 4px;
  font-style: italic;
}

:root {
  --brand: #00694e;
  --hover: #008764;
  --border: #e5e7eb;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #fff;
}

.wrap {
  max-width: 980px;
  margin: auto;
  padding: 1.5rem;
}

h1, h2, h3 {
  line-height: 1.3;
  margin: 1.5rem 0 0.5rem;
}

p, li {
  font-size: 1rem;
}

a {
  color: var(--brand);
  text-decoration: none;
}
a:hover {
  color: var(--hover);
}

a.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}
a.btn:hover {
  background: var(--hover);
}

ul.check {
  list-style: "✅ ";
  padding-left: 1.25rem;
}

ol {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

th, td {
  border: 1px solid var(--border);
  padding: 0.6rem;
  text-align: left;
}

th {
  background: #fafafa;
}

blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: #fafafa;
  border-left: 4px solid var(--brand);
  border-radius: 4px;
  font-style: italic;
}

nav ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

dl dt {
  font-weight: bold;
  margin-top: 1rem;
}
dl dd {
  margin-left: 1rem;
  margin-bottom: 0.5rem;
}

:root {
  --brand: #00694e;
  --hover: #008764;
  --border: #e5e7eb;
}

body {
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  margin: 0;
  padding: 0;
  background: #fff;
}

.wrap {
  max-width: 960px;
  margin: auto;
  padding: 2rem 1.5rem;
}

h1, h2, h3 {
  margin-bottom: 0.5rem;
  line-height: 1.3;
  color: var(--brand);
}

a {
  color: var(--brand);
  text-decoration: underline;
}

a:hover {
  color: var(--hover);
}

a.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  margin-top: 1rem;
}

a.btn:hover {
  background: var(--hover);
}

ul.check {
  list-style: "✅ ";
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.95rem;
}

th, td {
  border: 1px solid var(--border);
  padding: 0.6rem;
  text-align: left;
}

th {
  background: #f9f9f9;
  font-weight: bold;
}

dl dt {
  font-weight: bold;
  margin-top: 1rem;
}

dl dd {
  margin: 0 0 1rem 1.25rem;
}

nav ul {
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}

nav ul li {
  margin-bottom: 0.4rem;
}

:root {
  --brand: #00694e;
  --hover: #008764;
  --border: #e5e7eb;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #fdfdfc;
}

.wrap {
  max-width: 980px;
  margin: auto;
  padding: 1.5rem;
  background: #fff;
}

h1, h2, h3 {
  line-height: 1.3;
  margin: 1.5rem 0 .5rem;
  color: var(--brand);
}

p, li {
  font-size: 1rem;
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
}

ul.check {
  list-style: "✅ ";
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  color: var(--hover);
  text-decoration: underline;
}

a.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  margin-top: 1rem;
}

a.btn:hover {
  background: var(--hover);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .95rem;
  border: 1px solid var(--border);
}

th, td {
  border: 1px solid var(--border);
  padding: .75rem;
  text-align: left;
}

th {
  background-color: #f5f5f5;
}

nav ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

dl {
  margin: 1.25rem 0;
}

dt {
  font-weight: bold;
  margin-top: 1rem;
}

dd {
  margin-left: 1rem;
  margin-bottom: .75rem;
}

blockquote {
  background: #f0fdfa;
  border-left: 4px solid var(--brand);
  padding: 1rem;
  margin: 2rem 0;
  border-radius: 6px;
  font-style: italic;
}


/* =========================================================
   FIX: CTA HERO FINAL + FORM (LeadConnector iframe)
   Objetivo:
   - CTA en 2 columnas en desktop
   - CTA en 1 columna en mobile
   - Iframe con altura fija (no 100%) y sin “apretarse”
   ========================================================= */

/* Asegura grid correcto en desktop (por si otro CSS pisa el layout) */
#cta-hero-final .cta-content--split{
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: flex-start;
}

/* Dale respiración al contenedor del form (glass card) */
#cta-hero-final .cta-form-wrap{
  padding: 14px;            /* <-- esto evita que el form quede pegado a los bordes */
  box-sizing: border-box;
}

/* Iframe: NO uses height:100% (rompe en móvil si el padre no tiene altura) */
#cta-hero-final #inline-XTlMUWkLSE8UcHjCbsls{
  width: 100% !important;
  max-width: 100% !important;
  display: block;
  border: none !important;

  /* Altura desktop */
  height: 633px !important;

  /* Respeta el radio que pusiste */
  border-radius: 25px !important;
}

/* Tablet/Mobile: 1 columna + más altura para que no se “apriete” */
@media (max-width: 900px){
  #cta-hero-final .cta-content--split{
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* Mobile: sube altura (los forms suelen crecer por labels/inputs) */
@media (max-width: 600px){
  #cta-hero-final{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  #cta-hero-final #inline-XTlMUWkLSE8UcHjCbsls{
    height: 860px !important; /* Ajusta si tu form es más corto/largo */
  }
}