.elementor-11992 .elementor-element.elementor-element-19c36c5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS */#salertWrapper {
    display: none !important;
}

/* ==========================================
   VARIABLES Y RESET
   ========================================== */
:root {
/* Paleta El Refugio Holístico */
--tierra: #733f05;
--terracota: #bf5933;
--verde-oscuro: #504d4a;
--menta: #c4dcd0;
--crema: #f3e5d8;
--dorado: #ffdc7c;
--blanco: #ffffff;

/* Tipografías */
--font-titulo: "Playfair Display", serif; /* Alternativa a Arsenica */
--font-cuerpo: "Montserrat", sans-serif;

/* Espaciado High Ticket */
--espaciado-xs: 1rem;
--espaciado-sm: 2rem;
--espaciado-md: 4rem;
--espaciado-lg: 6rem;
--espaciado-xl: 8rem;

/* Bordes orgánicos */
--radio-sm: 12px;
--radio-md: 24px;
--radio-lg: 50px;
--radio-full: 100%;
}

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

html {
scroll-behavior: smooth;
}

body {
font-family: var(--font-cuerpo) !important;
background-color: var(--crema) !important;
color: var(--verde-oscuro);
line-height: 1.6 !important;
overflow-x: hidden;
}

/* ==========================================
   UTILIDADES Y COMPONENTES
   ========================================== */
body.elementor-page-11992 .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

.text-center {
text-align: center;
}

/* Tipografía orgánica y elegante */
body.elementor-page-11992 h1,
body.elementor-page-11992 h2,
body.elementor-page-11992 h3,
body.elementor-page-11992 h4 {
font-family: var(--font-titulo) !important;
font-weight: 500 !important;
line-height: 1.2 !important;
color: var(--tierra)
}

body.elementor-page-11992 h1 {
font-size: clamp(2.15rem, 5vw, 4rem) !important;
}
body.elementor-page-11992 h2 {
font-size: clamp(1.75rem, 4vw, 3rem) !important;
}
body.elementor-page-11992 h3 {
font-size: clamp(1.5rem, 3vw, 2rem) !important;
}

body.elementor-page-11992 .subtitulo {
font-family: var(--font-cuerpo);
text-transform: uppercase;
letter-spacing: 3px;
font-size: 0.85rem;
color: var(--terracota);
font-weight: 600;
margin-bottom: 1rem;
display: block;
}

/* Botones High Ticket */
body.elementor-page-11992 .btn {
/*display: inline-block;*/
padding: 1.2rem 2.5rem;
font-family: var(--font-cuerpo);
font-size: 0.9rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
text-decoration: none;
border-radius: var(--radio-lg);
transition: all 0.4s ease;
cursor: pointer;
border: none;
}

body.elementor-page-11992 .btn-principal {
background-color: var(--terracota);
color: var(--blanco);
box-shadow: 0 4px 20px rgba(191, 89, 51, 0.3);
}

body.elementor-page-11992 .btn-principal:hover {
background-color: var(--tierra);
color: var(--blanco);
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(115, 63, 5, 0.4);
}

body.elementor-page-11992 .btn-secundario {
background-color: transparent;
color: var(--tierra);
border: 2px solid var(--tierra);
}

body.elementor-page-11992 .btn-secundario:hover {
background-color: var(--tierra);
color: var(--blanco);
}

/* Separadores orgánicos */
.separador {
width: 80px;
height: 3px;
background: linear-gradient(90deg, var(--terracota), var(--dorado));
margin: 2rem auto;
border-radius: var(--radio-full);
}

/* Tarjetas con bordes orgánicos */
.card {
background: var(--blanco);
border-radius: var(--radio-md);
padding: 3rem;
box-shadow: 0 10px 40px rgba(115, 63, 5, 0.08);
transition: transform 0.3s ease;
}

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

/* Placeholder para imágenes */
.img-placeholder {
background: linear-gradient(135deg, var(--menta) 0%, var(--crema) 100%);
border-radius: var(--radio-md);
display: flex;
align-items: center;
justify-content: center;
color: var(--verde-oscuro);
font-style: italic;
position: relative;
overflow: hidden;
/*border: 2px dashed var(--terracota);*/
opacity: 0.8;
}

/*.img-placeholder::before {
content: "";
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: repeating-linear-gradient(
  45deg,
  transparent,
  transparent 10px,
  rgba(255, 255, 255, 0.1) 10px,
  rgba(255, 255, 255, 0.1) 20px
);
animation: shimmer 20s linear infinite;
}*/

.image-multiply {
    mix-blend-mode: multiply;
}

.image-cover {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

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

/* ==========================================
   SECCIONES PRINCIPALES
   ========================================== */

/* Header */
header {
position: fixed;
top: 0;
width: 100%;
background: rgba(243, 229, 216, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
padding: 1rem 0 !important;
border-bottom: 1px solid rgba(115, 63, 5, 0.1) !important;
transition: all 0.3s ease;
}

header.scrolled {
padding: 0.5rem 0 !important;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-family: var(--font-titulo);
font-size: 1.5rem;
color: var(--tierra);
text-decoration: none;
display: flex;
align-items: center;
gap: 0.5rem;
}

.logo img {
    width: 90px;
}

#header .btn.btn-secundario {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
}

/* Icono del árbol estilizado (Isotipo) */
.isotipo {
width: 40px;
height: 40px;
border: 2px solid var(--terracota);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}

.isotipo::before {
content: "🌿";
font-size: 1.2rem;
}

/* Hero Section VSL */
.hero {
margin-top: 80px;
padding: var(--espaciado-lg) 0;
background: linear-gradient(180deg, var(--crema) 0%, var(--menta) 100%);
position: relative;
overflow: hidden;
}

/* Formas orgánicas de fondo */
.hero::before {
content: "";
position: absolute;
top: -10%;
right: -5%;
width: 600px;
height: 600px;
background: radial-gradient(
  circle,
  rgba(196, 220, 208, 0.5) 0%,
  transparent 70%
);
border-radius: 50%;
z-index: 0;
}

.hero-content {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: 1fr;
/*gap: 3rem;*/
align-items: center;
}

.hero-text h1 {
margin-bottom: 1.5rem;
color: var(--tierra);
}

.hero-text h1 em {
color: var(--terracota);
font-style: italic;
}

.hero-subtitle {
font-size: 1.25rem;
color: var(--verde-oscuro);
margin-bottom: 2rem;
font-weight: 300;
max-width: 600px;
}

/* Contenedor del Video VSL */
.video-container {
position: relative;
width: 100%;
max-width: 900px;
margin: 0 auto;
aspect-ratio: 16/9;
background: var(--verde-oscuro);
border-radius: var(--radio-md);
overflow: hidden;
box-shadow: 0 20px 60px rgba(115, 63, 5, 0.3);
}

.video-placeholder {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: var(--crema);
cursor: pointer;
transition: transform 0.3s ease;
}

.video-placeholder:hover {
transform: scale(1.02);
}

.play-button {
width: 80px;
height: 80px;
background: var(--terracota);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
position: relative;
}

.play-button::after {
content: "";
width: 0;
height: 0;
border-left: 20px solid white;
border-top: 12px solid transparent;
border-bottom: 12px solid transparent;
margin-left: 5px;
}

/* Sección de Dolor (Problem) */
.problem {
padding: var(--espaciado-xl) 0;
background: var(--blanco);
position: relative;
}

.problem-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 4rem;
margin-top: 4rem;
/*align-items: center;*/
}

.problem-list {
list-style: none;
margin: 0;
padding: 0;
}

.problem-list li {
padding: 1.5rem;
margin-bottom: 1rem;
background: var(--crema);
border-radius: var(--radio-sm);
border-left: 4px solid var(--terracota);
font-family: var(--font-titulo);
font-size: 1.2rem;
color: var(--tierra);
transition: all 0.3s ease;
}

.problem-list li:hover {
transform: translateX(10px);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Sección Revelación (The Shift) */
.revelation {
padding: var(--espaciado-xl) 0;
background: var(--verde-oscuro);
color: var(--crema);
position: relative;
overflow: hidden;
}

body.elementor-page-11992 .revelation h2,
body.elementor-page-11992 .revelation h3 {
color: var(--menta);
}

.revelation .subtitulo {
color: var(--dorado);
}

.brain-gut-section {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
margin-top: 4rem;
align-items: center;
}

/* Solución (Method) */
.solution {
padding: var(--espaciado-xl) 0;
background: linear-gradient(180deg, var(--menta) 0%, var(--crema) 100%);
}

.method-intro {
max-width: 800px;
margin: 0 auto 4rem;
text-align: center;
}

.niveles-grid {
display: grid;
/*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
grid-template-columns: repeat(2, 2fr);
gap: 2rem;
margin-top: 3rem;
}

.nivel-card {
background: var(--blanco);
padding: 2.5rem;
border-radius: var(--radio-md);
border-top: 4px solid var(--terracota);
position: relative;
transition: all 0.3s ease;
}

.nivel-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 50px rgba(115, 63, 5, 0.15);
}

.nivel-number {
position: absolute;
top: -20px;
left: 50%;
transform: translateX(-50%);
width: 40px;
height: 40px;
background: var(--terracota);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-family: var(--font-titulo);
}

/* Proceso (How it works) */
.process {
padding: var(--espaciado-xl) 0;
background: var(--blanco);
}

.process-steps {
display: flex;
flex-direction: column;
gap: 3rem;
margin-top: 4rem;
}

.step {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 3rem;
align-items: center;
padding: 3rem;
background: var(--crema);
border-radius: var(--radio-lg);
position: relative;
}

.step:nth-child(even) {
direction: rtl;
}

.step:nth-child(even) > * {
direction: ltr;
}

.step-img {
height: 300px;
border-radius: var(--radio-md);
}

/* Testimonios */
.testimonials {
padding: var(--espaciado-xl) 0;
background: var(--tierra);
color: var(--crema);
}

body.elementor-page-11992 .testimonials h2 {
color: var(--blanco);
}

.testimonial-card {
max-width: 800px;
margin: 3rem auto;
padding: 3rem;
background: rgba(255, 255, 255, 0.1);
border-radius: var(--radio-md);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
font-family: var(--font-titulo);
font-size: 1.3rem;
font-style: italic;
line-height: 1.8;
position: relative;
}

.testimonial-card::before {
content: '"';
font-size: 6rem;
color: var(--terracota);
position: absolute;
top: -20px;
left: 20px;
opacity: 0.5;
}

.testimonial-author {
margin-top: 2rem;
font-family: var(--font-cuerpo);
font-style: normal;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--dorado);
}

/* Oferta High Ticket */
.offer {
padding: var(--espaciado-xl) 0;
background: linear-gradient(135deg, var(--crema) 0%, var(--menta) 100%);
text-align: center;
}

.offer-box {
max-width: 700px;
margin: 3rem auto;
padding: 4rem;
background: var(--blanco);
border-radius: var(--radio-lg);
box-shadow: 0 20px 60px rgba(115, 63, 5, 0.15);
border: 2px solid var(--dorado);
position: relative;
}

.offer-badge {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background: var(--terracota);
color: white;
padding: 0.5rem 2rem;
border-radius: var(--radio-lg);
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 600;
}

.price {
font-family: var(--font-titulo);
font-size: 3rem;
color: var(--tierra);
margin: 2rem 0;
}

.guarantee {
margin-top: 2rem;
padding: 1.5rem;
background: var(--verde-oscuro);
color: var(--menta);
border-radius: var(--radio-sm);
font-size: 0.9rem;
}

/* FAQ */
.faq {
padding: var(--espaciado-xl) 0;
background: var(--blanco);
}

.faq-item {
max-width: 800px;
margin: 0 auto 1.5rem;
border-bottom: 1px solid var(--crema);
padding-bottom: 1.5rem;
}

.faq-question {
font-family: var(--font-titulo);
font-size: 1.3rem;
color: var(--tierra);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: color 0.3s ease;
}

.faq-question:hover {
color: var(--terracota);
}

.faq-answer {
margin-top: 1rem;
color: var(--verde-oscuro);
display: none;
line-height: 1.8;
}

.faq-item.active .faq-answer {
display: block;
}

.faq-icon {
transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
transform: rotate(45deg);
}

/* Footer CTA */
.final-cta {
padding: var(--espaciado-xl) 0;
background: var(--verde-oscuro);
color: var(--crema);
text-align: center;
position: relative;
overflow: hidden;
}

.final-cta::before {
content: "";
position: absolute;
bottom: -50%;
left: -10%;
width: 120%;
height: 100%;
background: radial-gradient(
  circle,
  rgba(196, 220, 208, 0.1) 0%,
  transparent 70%
);
}

body.elementor-page-11992 .final-cta h2 {
color: var(--blanco);
margin-bottom: 2rem;
}

.urgency {
margin-top: 2rem;
font-size: 0.9rem;
color: var(--dorado);
text-transform: uppercase;
letter-spacing: 2px;
}

/* Footer */
footer {
padding: 3rem 0 !important;
background: var(--tierra);
color: var(--crema);
text-align: center;
font-size: 0.9rem;
}

/* Animaciones scroll */
.fade-in {
opacity: 0;
transform: translateY(30px);
transition:
  opacity 0.8s ease,
  transform 0.8s ease;
}

.fade-in.visible {
opacity: 1;
transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --espaciado-lg: 4rem;
        --espaciado-xl: 6rem;
    }
    
    header .container {
        padding: 0 15px;
    }
    
    #header .btn.btn-secundario {
        padding: 0.5rem 1rem;
        font-size: 0.65rem;
    }
    
    .logo img {
        width: 75px;
    }
    
    body.elementor-page-11992 .container {
        padding: 0 20px;
    }
    
    body.elementor-page-11992 .subtitulo {
        font-size: 0.7rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
.problem-grid,
.brain-gut-section,
.step {
  grid-template-columns: 1fr;
}

.niveles-grid {
    grid-template-columns: repeat(1, 1fr);
}

.nivel-card p {
    font-size: 1rem;
}

.step {
    padding: 1.5rem;
    border-radius: 30px;
}

.step p {
    font-size: 1rem;
}

.step:nth-child(even) {
  direction: ltr;
}

.offer-box {
  padding: 3rem 1.5rem 2rem;
  border-radius: 30px;
}

.offer-box p {
    font-size: 1rem;
}

.offer-badge {
    width: 80%;
    font-size: 0.75rem;
}

.video-container {
  aspect-ratio: 9/16; /* Mobile vertical video opción */
}

.testimonial-card {
    font-size: 1.1rem;
}

.faq-answer {
    font-size: 1rem;
}

}/* End custom CSS */