:root {
    --crema-calido: #F8F5EE;
    --blanco-calido: #FBF8F2;
    --beige-arena: #E8DDC9;
    --madera-clara: #B68A5A;
    --olivo-principal: #6F7444;
    --verde-profundo: #3F4428;
    --dorado: #B8A46A;
    --texto-principal: #2F2F28;
    --text-secundario: #6F6B5F;

}

/* =========== GLOBAL ===========*/
html {
    font-size: 62.5%;
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

#monserrat {
    scroll-margin-top: 90px;
}

#experiencia {
    scroll-margin-top: 20px;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {

    font-family: 'Lato', sans-serif;
    background: var(--crema-calido);
    color: var(--text-secundario);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    width: 94%;
    max-width: 1500px;
    margin: auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, .15);
    /*backdrop-filter: blur(8px);*/
}

.header-container {
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img {
    width: 260px;
    object-fit: contain;
    display: block;
}

.menu {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.menu a {
    text-decoration: none;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: .3s;
    position: relative;
    padding-bottom: .8rem;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--dorado);
    transition: width .35s ease;
}

.menu a:hover {
    color: #D7C08A;
}

.menu a:hover::after {
    width: 100%;
}

.menu a.active {
    color: #D7C08A;
}

.menu a.active::after {
    width: 100%;
}

.separador-nav {
    width: 2px;
    height: 36px;
    background: var(--dorado);
    display: block;
}

.menu a.nav-link {
    font-size: 1.4rem;
    font-weight: 700;
}

/* BOTÓN */
.btn-header {
    background: var(--olivo-principal);
    color: white;
    text-decoration: none;
    padding: 1.4rem 2.6rem;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: bold;
    transition: .3s;
}

.btn-header:hover {
    background: #5E6338;
}

/* ================= HERO ================= */
.hero {
    min-height: 100vh;
    min-height: 100vh;
    height: auto;
    overflow: visible;
    background-image:
        linear-gradient(rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .45)),
        url('../img/imagen-hero.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 50px;
}

.hero-overlay {
    position: absolute;
    pointer-events: none;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .65) 0%,
            rgba(0, 0, 0, .35) 45%,
            rgba(0, 0, 0, .10) 100%);
}

.hero-container {
    width: 94%;
    max-width: 1500px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    color: white;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5.6rem;
    line-height: 1.05;
    font-weight: 500;
    margin-bottom: 3rem;
}

.hero-description {
    font-size: 1.9rem;
    line-height: 1.5;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .92);
    margin-bottom: 2rem;
    max-width: 560px;
}

.hero-description.small {
    font-size: 1.7rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 4rem;
}

/* ================= BOTONES ================= */
.hero-buttons {
    display: flex;
    gap: 2rem;
    margin-bottom: 5rem;
}

.btn-primary,
.btn-secondary {
    width: 250px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    transition: .3s ease;
}

.btn-primary {
    background: #73784A;
    color: white;
}

.btn-primary:hover {
    background: #62663F;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, .5);
    color: white;
    gap: 1rem;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .08);
}

/* ================= FEATURES ================= */
.hero-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 200px;
}

.feature-item span {
    font-size: 1.6rem;
    line-height: 1.4;
    color: white;
}

/* ================= SECCIÓN ESTRES ================= */
.relax-section {
    background: #F7F3EC;
    padding: 0;
}

.relax-top {
    display: grid;
    grid-template-columns: 500px 1fr 340px;
    align-items: start;
    background: var(--crema-calido);
}

/* ================= IMAGEN IZQUIERDA ================= */
.relax-image-left {
    position: relative;
    width: 500px;
    height: 500px;
    overflow: hidden;
    margin-top: 50px;
}

.relax-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.02);
}

.relax-image-left::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(248, 245, 238, 0) 0%,
            rgba(248, 245, 238, 1) 100%);
    pointer-events: none;
}

/* ================= TEXTO CENTRO ================= */
.relax-content {
    padding: 2rem 4rem 4rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.relax-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.9rem;
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -1px;
    color: var(--texto-principal);
    margin-bottom: 1rem;
    max-width: 760px;
}

.relax-content p {
    font-size: 1.75rem;
    line-height: 1.5;
    color: var(--text-secundario);
    margin-bottom: 3rem;
    max-width: 700px;
}

.relax-mini-text {
    margin-top: 1rem;
    margin-bottom: 2rem !important;
    font-size: 1.8rem !important;
}

/* ================= ICONOS ================= */
.relax-icons {
    display: flex;
    gap: 6rem;
    margin-bottom: 3.5rem;
}

.relax-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
}

.relax-icon-item svg {
    width: 38px;
    height: 38px;
    stroke: #3E3B36;
}

.relax-icon-item span {
    font-size: 1.45rem;
    line-height: 1.6;
    color: #4E4B45;
}

/* TEXTO ICONOS */
.relax-icon-item span {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #4A4944;
}

/* BOLD */
.relax-bold {
    font-weight: 700;
    color: var(--texto-principal) !important;
    font-size: 1.9rem !important;
    line-height: 1.7 !important;
    margin-top: .5rem;
}

/* ================= IMAGEN DERECHA ================= */
.relax-image-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 100px;
}

.relax-image-right img {
    width: 300px;
    max-width: 340px;
    height: 300px;
    margin-top: 150px;
    display: block;
}

/* ================= RECONEXION BOTTOM ================= */
.reconexion-bottom {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    min-height: 600px;
}

/* TEXTO */
.reconexion-content {
    padding: .1rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reconexion-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    margin-bottom: 2rem;
    color: var(--texto-principal);
}

.reconexion-content p {
    font-size: 1.7rem;
    line-height: 1.5;
    color: var(--text-secundario);
    margin-bottom: 1rem;

}

.reconexion-bold {
    font-weight: 700;
    color: var(--texto-principal) !important;

}

/* ================= ICONOS RECONEXION ================= */
.reconexion-icons {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    margin-top: 3rem;
    align-items: flex-start;
}

/* CADA ITEM */
.reconexion-icon-item {
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    text-align: left;
    max-width: 280px;
}

/* ICONO */
.reconexion-icon-item svg {
    flex-shrink: 0;
    margin-top: 1rem;
    stroke: #3E3B36;
}

/* TEXTO COMPLETO */
.reconexion-icon-item span {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #4A4944;
}

/* TITULO EN NEGRITA */
.reconexion-icon-item span strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--texto-principal);
    margin-bottom: .4rem;
}

/* IMAGEN */
.reconexion-image img {
    width: 100%;
    height: 500px;
    margin-top: 50px;
    object-fit: cover;
    display: block;
}

/* ================= BENEFICIOS ================= */
.benefits-section {
    background: var(--blanco-calido);
    padding: 3rem 0 9rem;
}

.benefits-container {
    width: 92%;
    max-width: 1350px;
    margin: auto;
    text-align: center;
}

.benefits-top-text {
    font-size: 1.7rem;
    color: #7A7468;
    margin-bottom: -4rem;
    line-height: 1.8;
}

.benefits-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 5.6rem;
    line-height: 1.15;
    font-weight: 500;
    color: var(--texto-principal);
    margin-bottom: 7rem;

}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem;

}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-icon {
    margin-bottom: .1rem;

}

.benefit-icon svg {
    width: 42px;
    height: 42px;
    stroke: #7A755E;

}

.benefit-item h3 {
    font-size: 1.9rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: var(--texto-principal);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.benefit-item p {
    font-size: 1.45rem;
    line-height: 1.5;
    color: #6F6B5F;
}

.benefits-bottom-text {
    margin-top: 3rem;
    font-size: 2rem;
    color: #3F4428;
    font-weight: 700;
    line-height: 1.8;
}

/* ================= SOBRE MONSERRAT ================= */
.monserrat-section {
    background: var(--crema-calido);
}

.monserrat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.monserrat-image {
    height: 100%;
}

.monserrat-image img {
    width: 700px;
    height: 500px;
    object-fit: cover;
    display: block;
}

.monserrat-content {
    padding: 3rem 6rem;
}

.monserrat-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 500;
    color: var(--texto-principal);
    margin-bottom: 3rem;
    margin-top: -30px;
}

.monserrat-content p {
    font-size: 1.7rem;
    line-height: 1.5;
    color: var(--text-secundario);
    margin-bottom: 2rem;
}

.monserrat-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    margin-left: -100px;
}

.monserrat-feature {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.monserrat-feature svg {
    stroke: #6F7444;
    flex-shrink: 0;

}

.monserrat-feature span {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #4D4942;

}

#monserrat {
    scroll-margin-top: 130px;
}

/* ================= EXPERIENCIA ================= */
.experience-section {
    background: var(--blanco-calido);
    padding: 8rem 0;
}

.experience-container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}

.experience-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 500;
    color: var(--texto-principal);
    margin-bottom: 6rem;
}

/* GRID GENERAL */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 560px;
    gap: 0;
    align-items: start;
}

.experience-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
}

.experience-step {
    position: relative;
    text-align: center;
    padding-top: 2rem;
    max-width: 180px;
    margin: 0 auto;
}

/* CIRCULO ICONO */
.step-icon {
    width: 72px;
    height: 72px;
    border: 1px solid #D9D2C6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.step-icon svg {
    width: 34px;
    height: 34px;
    stroke: #AAA08F;
    stroke-width: 1.3;
}

/* NUMEROS */
.step-number {
    position: absolute;
    top: -10px;
    left: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--olivo-principal);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 3;
}

/* TITULO */
.experience-step h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--texto-principal);
    line-height: 1.35;
    margin-top: 1.4rem;
    margin-bottom: .2rem;
    min-height: 45px;
}

.experience-step p {
    font-size: 1.25rem;
    line-height: 1.75;
    color: #6F6B5F;
    max-width: 165px;
    margin: 0 auto;
}

.experience-image {
    display: flex;
    justify-content: flex-end;
    margin-right: -110px;
}

.experience-image img {
    width: 100%;
    max-width: 560px;
    display: block;
}

/* ================= KITS ================= 
.kits-section {
    background: var(--crema-calido);
}

.kits-grid {
    display: grid;
    grid-template-columns: 1fr 560px;
    align-items: center;
    gap: 4rem;

    overflow: visible;
}

.kits-content {
    padding: 6rem;
    position: relative;
    z-index: 5;
}

.kits-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    color: var(--texto-principal);
}

.kits-content p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--texto-principal);
    margin-bottom: 2rem;
    max-width: 700px;
    letter-spacing: 2px;
}

.kits-benefits {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;

    width: fit-content;

    margin-top: 3rem;
    margin-left: auto;

    position: relative;
    z-index: 20;
}

.kits-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;

    position: relative;

    margin-top: -200px;
    left: 240px;
}

.kits-benefit svg {
    stroke: var(--text-secundario);
}

.kits-benefit span {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #4F4B45;
}

.kits-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2.8rem;
    gap: 4px;
    border-radius: 8px;
    background: var(--olivo-principal);
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: .3s;
}

.kits-btn:hover {
    background: #5F643A;
}

.kits-mini {
    font-size: 1.3rem !important;
    color: #7A756B !important;
    padding-bottom: 4rem;
}

.kits-image {
    overflow: visible;
    position: relative;
    z-index: 1;
}

.kits-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 40%;
    height: 100%;

    background: linear-gradient(to right,
            #f3f0ea 0%,
            rgba(243, 240, 234, 0.9) 30%,
            rgba(243, 240, 234, 0) 100%);

    z-index: 2;
}

.kits-image img {
    width: 100%;
    display: block;
}

#kits {
    scroll-margin-top: 95px;
}*/

/* ================= CTA ================= */
.cta-section {
    position: relative;
    background-image:
        linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)),
        url('../img/imagen-hero.png');
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    color: white;
}

.cta-container {
    width: 92%;
    max-width: 1350px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    position: relative;
    z-index: 2;
}

.cta-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 5rem;
}

.cta-features {
    display: flex;
    gap: 4rem;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-feature span {
    font-size: 1.4rem;
    line-height: 1.7;
}

.cta-right p {
    font-size: 1.7rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, .88);
    margin-bottom: 2rem;
}

.cta-right h3 {
    font-size: 2.3rem;
    line-height: 1.6;
    margin: 4rem 0 3rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
}

.cta-btn-primary,
.cta-btn-secondary {
    height: 58px;
    padding: 0 3rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
}

.cta-btn-primary {
    background: white;
    color: var(--texto-principal);
}

.cta-btn-secondary {
    border: 1px solid rgba(255, 255, 255, .5);
    color: white;

}

/* ================= FOOTER ================= */
.footer {
    background: var(--crema-calido);
    padding: .5rem 0;
}

.footer-container {
    width: 92%;
    max-width: 1350px;
    margin: auto;
    display: flex;
    align-items: center;
    padding-bottom: 0;
    justify-content: space-between;
}

/* LOGO */
.footer-logo img {
    width: 150px;
    height: 50px;
    display: block;
}

/* TEXTO CENTRADO */
.footer-center {
    text-align: center;
}

.footer-center p {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--text-secundario);
}

/* REDES */
.footer-social {
    display: flex;
    gap: 2rem;
}

.footer-social a {
    text-decoration: none;
    color: #3F4428;
    font-size: 1.5rem;
}

.footer-home {
    display: block;
    margin-top: .8rem;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--texto-principal);
    transition: .3s ease;
}

.footer-home:hover {
    color: var(--dorado);
}

/* ================= WHATSAPP ================= */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 15px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #25D366;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999999999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* ================= ChatBot ================= */
:root {
  /* Colors - Paleta verde oliva natural */
  --chat--color-primary: #6F7444;
  --chat--color-primary-shade-50: #808654;
  --chat--color-primary-shade-100: #949a67;

  --chat--color-secondary: #b5bb8a;
  --chat--color-secondary-shade-50: #c8cda4;

  --chat--color-white: #ffffff;

  --chat--color-light: #f5f5ee;
  --chat--color-light-shade-50: #ebe9dc;
  --chat--color-light-shade-100: #dddac8;

  --chat--color-medium: #9ca07b;
  --chat--color-dark: #3f4328;

  --chat--color-disabled: #c5c7b8;
  --chat--color-typing: #777b5a;

  /* Base Layout */
  --chat--spacing: 1rem;
  --chat--border-radius: 0.6rem;
  --chat--transition-duration: 0.2s;

  --chat--font-family: (
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    'Helvetica Neue',
    sans-serif
  );

  /* Window Dimensions */
  --chat--window--width: 400px;
  --chat--window--height: 600px;
  --chat--window--bottom: var(--chat--spacing);
  --chat--window--right: var(--chat--spacing);
  --chat--window--z-index: 9999;

  --chat--window--border: 1px solid var(--chat--color-light-shade-50);
  --chat--window--border-radius: var(--chat--border-radius);
  --chat--window--margin-bottom: var(--chat--spacing);

  /* Header */
  --chat--header-height: auto;
  --chat--header--padding: var(--chat--spacing);
  --chat--header--background: var(--chat--color-primary);
  --chat--header--color: var(--chat--color-white);

  --chat--heading--font-size: 1.5em;
  --chat--subtitle--font-size: inherit;
  --chat--subtitle--line-height: 1.6;

  /* Messages */
  --chat--message--font-size: 1rem;
  --chat--message--padding: var(--chat--spacing);
  --chat--message--border-radius: var(--chat--border-radius);

  --chat--message-line-height: 1.5;
  --chat--message--margin-bottom: calc(var(--chat--spacing) * 1);

  /* Mensajes del bot (fondo claro, texto oscuro) */
  --chat--message--bot--background: var(--chat--color-light);
  --chat--message--bot--color: var(--chat--color-dark);

  /* Mensajes del usuario (fondo verde, texto blanco) */
  --chat--message--user--background: var(--chat--color-primary);
  --chat--message--user--color: var(--chat--color-white);

  --chat--message--pre--background: #ecebdc;

  --chat--messages-list--padding: var(--chat--spacing);

  /* Toggle Button */
  --chat--toggle--size: 64px;
  --chat--toggle--background: var(--chat--color-primary);
  --chat--toggle--hover--background: var(--chat--color-primary-shade-50);
  --chat--toggle--active--background: var(--chat--color-primary-shade-100);
  --chat--toggle--color: var(--chat--color-white);

  /* Input */
  --chat--textarea--height: 50px;
  --chat--input--padding: 0.8rem;

  --chat--input--background: var(--chat--color-white);
  --chat--input--text-color: var(--chat--color-dark);

  --chat--input--placeholder--font-size: var(--chat--input--font-size);

  --chat--input--border-active: 1px solid var(--chat--color-primary);

  /* Buttons */
  --chat--button--color: var(--chat--color-white);
  --chat--button--background: var(--chat--color-primary);
  --chat--button--hover--background: var(--chat--color-primary-shade-50);

  /* Send Button */
  --chat--input--send--button--background: transparent;
  --chat--input--send--button--color: var(--chat--color-primary);
  --chat--input--send--button--color-hover: var(--chat--color-dark);

  /* File Button */
  --chat--input--file--button--color: var(--chat--color-secondary);
  --chat--input--file--button--color-hover: var(--chat--color-primary);

  /* Body */
  --chat--body--background: var(--chat--color-light);

  /* Footer */
  --chat--footer--background: var(--chat--color-white);
  --chat--footer--color: var(--chat--color-dark);
}
.n8n-chat .chat-header p {
    color: #f5f5f5 !important;
  }

.n8n-chat .chat-message-from-user {
  color: white !important;
}

.n8n-chat .chat-message-from-user * {
  color: white !important;
}

/* Botón de enviar verde */
.n8n-chat .chat-input-send-button {
    background-color: #6F7444 !important; /* verde oliva */
    color: white !important; /* letra blanca */
    border: none !important;
}

/* Hover del botón */
.n8n-chat .chat-input-send-button:hover {
    background-color: #808654 !important; /* verde más claro */
}
/* Mensajes */
.chat-message {
  max-width: 55%;
}

/* ================= ANIMACIONES ================= */
.fade-up {
    opacity: 0;
    transition:
        opacity .8s ease,
        transform .8s ease;
    will-change: opacity;
}

.fade-up.visible {
    opacity: 1;
}

/* DELAYS */
.delay-1 {
    transition-delay: .1s;
}

.delay-2 {
    transition-delay: .2s;
}

.delay-3 {
    transition-delay: .3s;
}

.delay-4 {
    transition-delay: .4s;
}

/* ================= HOVER ELEGANTE ================= */
.relax-icon-item,
.reconexion-icon-item,
.benefit-item,
.experience-step,
.monserrat-feature,
.kits-benefit {
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.relax-icon-item:hover,
.reconexion-icon-item:hover,
.benefit-item:hover,
.experience-step:hover {
    transform: translateY(-6px);
}

/* ================= BOTONES ================= */

.btn-primary,
.btn-secondary,
.kits-btn,
.cta-btn-primary,
.cta-btn-secondary,
.btn-header {
    transition:
        transform .3s ease,
        background-color .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.btn-primary:hover,
.btn-secondary:hover,
.kits-btn:hover,
.cta-btn-primary:hover,
.cta-btn-secondary:hover,
.btn-header:hover {
    transform: translateY(-2px);
}

/* ================= HEADER SCROLL ================= */

.header {
    transition:
        background-color .4s ease,
        backdrop-filter .4s ease,
        box-shadow .4s ease;
}

.header.scrolled {
    background: rgba(20, 20, 20, .72);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

/* ================= RESPONSIVE ================= */

img {
    max-width: 100%;
    height: auto;
}

section {
    scroll-margin-top: 100px;
}

/* ================= TABLET ================= */
@media (max-width:1024px) {
    .mobile-hide {
        display: none;
    }

    .btn-header {
        display: none;
    }

    .hero {
        justify-content: center;
        text-align: center;
    }

    .hero-container {
        display: flex;
        justify-content: center;
    }

    .hero-content {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .hero h1 {
        text-align: center;
        margin-top: -10rem;
    }

    .hero-description,
    .hero-description.small {
        margin-left: auto;
        margin-right: auto;
        max-width: 620px;
        font-size: 2rem;
        text-align: justify;
    }

    .hero-buttons {
        justify-content: center;
        margin: 2rem 2rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 420px;
        padding: 2rem 4rem;
        font-size: 2rem;
    }

    .btn-primary svg,
    .btn-secondary svg {
        width: 45px;
        height: 45px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-features span {
        padding-top: 2rem;
        font-size: 2rem;
    }


    .relax-content {
        text-align: center;
        margin: 0 auto;
    }

    .relax-content h2 {
        margin: 0 auto 3rem auto;
        max-width: 700px;
        font-size: 3.6rem;
    }

    .relax-content p {
        margin: 0 auto 2.5rem auto;
        max-width: 650px;
        font-size: 2rem;
        text-align: justify;
    }

    .relax-icons {
        justify-content: center;
        margin: 4rem auto;
    }

    .relax-icon-item span {
        font-size: 2rem;
    }

    .relax-content .relax-bold {
        text-align: center;
    }

    .relax-bottom-text {
        text-align: center;
        margin: 0 auto;
        max-width: 650px;
    }

    .relax-image-left {
        width: 100%;
        max-width: 500px;
        aspect-ratio: 1/1;
        height: auto;
        border-radius: 5%;
        margin: 4rem auto 0;
    }

    .relax-image-right {
        padding-right: 0;
        margin-bottom: 4rem;
    }

    .relax-image-right img {
        margin-top: 0;
        border-radius: 5%;
    }

    .reconexion-content .reconexion-bold {
        text-align: center;
    }

    .reconexion-content {
        text-align: center;
    }

    .reconexion-content h2 {
        text-align: center;
        font-size: 4rem;
    }

    .reconexion-content p {
        font-size: 2rem;
        max-width: 100%;
        text-align: justify;
    }

    .reconexion-icons {
        justify-content: center;
        text-align: center;
        gap: 4rem;
    }

    .reconexion-icon-item {
        align-items: center;
        text-align: center;
    }

    .reconexion-icon-item svg {
        width: 45px;
        height: 45px;
    }

    .benefits-top-text {
        font-size: 3rem;
        line-height: 1.5;
    }

    .benefits-container h2 {
        font-size: 5rem;
        padding-top: 2rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-bottom-text {
        font-size: 2.4rem;
    }

    .monserrat-content h2 {
        padding-top: 2rem;
        font-size: 4.5rem;
        text-align: center;
    }

    .monserrat-content p {
        font-size: 2rem;
        text-align: justify center;
    }

    .monserrat-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 4rem;
        justify-items: center;
        align-items: start;
        width: 100%;
        max-width: 500px;
        margin: 4rem auto 0 auto;
    }

    .monserrat-feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 180px;
    }

    .monserrat-feature svg {
        width: 40px;
        height: 40px;
    }

    .monserrat-feature span {
        font-size: 1.7rem;
        line-height: 1.7;
    }

    .experience-container {
        margin-top: -5rem;
    }

    .experience-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-step h3 {
        font-size: 2rem;
    }

    .experience-step p {
        font-size: 1rem;
    }

    .experience-image {
        padding-top: 5rem;
    }

    /*
    .kits-content h2 {
        text-align: center;
        margin-top: -5rem;
        padding-bottom: 2rem;
        font-size: 5rem;
    }

    .kits-content p {
        font-size: 2.3rem;
        padding-bottom: 3rem;
    }

    .kits-benefit {
        left: -1.5rem;
        margin-top: 0;
        padding-bottom: 5rem;
    }

    .kits-benefit svg {
        width: 50px;
        height: 50px;
    }

    .kits-benefit span {
        font-size: 2rem;
    }

    .kits-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 560px;
        margin: 4rem auto 2.5rem auto;
        padding: 2.2rem 3rem;
        font-size: 2rem;
        font-weight: 600;
        border-radius: 14px;
    }

    .kits-btn svg {
        width: 28px;
        height: 28px;
    }

    .kits-mini {
        display: block;
        width: 100%;
        text-align: center !important;
        font-size: 2rem !important;
        line-height: 1.8;
        margin: 2rem auto 0 auto;
        font-weight: 500;
    }*/

    .cta-left h2 {
        font-size: 4rem;
        text-align: center;
    }

    .cta-features {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 6rem;
        width: 100%;
        margin: 0 auto 0 auto;
    }

    .cta-feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 180px;
    }

    .cta-feature svg {
        width: 38px;
        height: 38px;
        margin-bottom: 1.5rem;
    }

    .cta-feature span {
        font-size: 1.9rem;
    }

    .cta-right p {
        font-size: 2rem;
        text-align: justify;
        line-height: 3.5rem;
        margin-top: -2rem;
    }

    .cta-right h3 {
        text-align: center;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        margin-top: 5rem;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 250px;
        min-height: 72px;
        padding: 2rem 4rem;
        font-size: 1.8rem;
        font-weight: 600;
        border-radius: 14px;
    }

    .cta-btn-secondary svg {
        width: 30px;
        height: 30px;
    }

    .cta-btn-secondary {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.2rem;
    }

    .relax-top,
    .reconexion-bottom,
    .experience-grid,
    .kits-grid,
    .monserrat-grid,
    .cta-container {
        grid-template-columns: 1fr;
    }

    .experience-image,
    .kits-image,
    .monserrat-image,
    .reconexion-image {
        margin: 0;
        display: flex;
        justify-content: center;
    }

    .experience-image img,
    .kits-image img,
    .monserrat-image img,
    .reconexion-image img {
        width: 100%;
        max-width: 700px;
        border-radius: 5%;
    }

    .footer-center p {
        font-size: 1.5rem;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        right: 18px;
        bottom: 70px;
    }
}


/* ================= HAMBURGUESA ================= */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 3.2rem;
    cursor: pointer;
    z-index: 1002;
}

/* ================= MOBILE ================= */
@media (max-width:768px) {

    html {
        font-size: 56%;
    }

    body {
        overflow-x: hidden;
    }

    #monserrat {
        scroll-margin-top: 90px;
    }

    #experiencia {
        scroll-margin-top: 80px;
    }

    #cta-final {
        scroll-margin-top: 80px;
    }

    .container {
        width: 100%;
        padding: 0 2rem;
    }

    .mobile-hide {
        display: none;
    }

    /* ================= HEADER ================= */
    .header {
        height: 85px;
    }

    .header-container {
        height: 85px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .logo img {
        width: 170px;
        object-fit: contain;
        display: block;
        margin-left: -10px;
    }

    .btn-header {
        display: none;
    }

    /* ================= MENU MÓVIL ================= */
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 3rem;
        color: white;
        cursor: pointer;
    }

    .menu {
        display: none;
    }

    .menu.active {
        display: flex;
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 15, 0.97);
        padding: 4rem 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 2.5rem;
    }

    .menu.active a {
        font-size: 1.9rem;
        padding-bottom: 0;
    }

    .menu.active .separador-nav {
        display: block;
        width: 140px;
        height: 1px;
        background-color: #D7C08A;
        margin: 1rem auto;
    }

    .menu a::after {
        display: none;
    }

    /* ================= HERO ================= */
    .hero {
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 70px;
        align-items: flex-start;
    }

    .hero-container {
        width: 100%;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-top: 0;
    }

    .hero h1 {
        font-size: 3.5rem;
        line-height: 1.08;
        margin-bottom: 2rem;
        margin-top: -2rem;
    }

    .hero-description {
        font-size: 1.65rem;
        line-height: 1.5;
        max-width: 340px;
        margin: 0 auto 2rem auto;
    }

    .hero-description.small {
        font-size: 1.65rem;
        line-height: 1.5;
        max-width: 340px;
        margin: 0 auto 3.5rem auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.8rem;
        margin-bottom: 4rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 340px;
        padding-bottom: 1;
    }

    .btn-secondary svg {
        width: 30px;
        height: 30px;
    }

    .hero-features {
        justify-content: center;
        gap: 2rem;
        margin-top: 3rem;
    }

    .feature-item {
        min-width: 140px;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .feature-item span {
        font-size: 1.65rem;
        padding-top: 0;
    }

    /* ================= RELAX ================= */
    .relax-top {
        grid-template-columns: 1fr;
    }

    .relax-image-left {
        width: 100%;
        height: 320px;
        margin-top: 0;
    }

    .relax-content {
        padding: 4rem 2rem;
        text-align: center;
    }

    .relax-content h2 {
        font-size: 3.6rem;
        line-height: 1.2;
    }

    .relax-content p {
        font-size: 1.66rem;
        line-height: 1.8;
        max-width: 100%;
    }

    .relax-icons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
        justify-items: center;
        align-items: start;
        width: 100%;
        max-width: 340px;
        margin: 4rem auto;
    }

    .relax-icon-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        width: 130px;
    }

    .relax-icon-item span {
        font-size: 1.65rem;
    }

    .relax-icon-item p {
        margin: 0;
    }

    .relax-image-right {
        padding: 0 0 4rem;
    }

    .relax-image-right img {
        width: 220px;
        height: 220px;
    }

    /* ================= RECONEXION ================= */
    .reconexion-bottom {
        grid-template-columns: 1fr;
    }

    .reconexion-content {
        padding: 5rem 2rem;
        text-align: center;
    }

    .reconexion-content h2 {
        font-size: 3.7rem;
        margin-top: -4rem;
    }

    .reconexion-content p {
        font-size: 1.65rem;
        line-height: 1.5;
    }

    .reconexion-icons {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .reconexion-icon-item {
        max-width: 320px;
    }

    .reconexion-icon-item svg {
        width: 50px;
        height: 50px;
        margin-bottom: 5rem;
    }

    .reconexion-image img {
        height: 320px;
        margin-top: 0;
    }

    /* ================= BENEFITS ================= */
    .benefits-section {
        padding: 4rem 0;
    }

    .benefits-top-text {
        font-size: 2rem;
        line-height: 1;
    }

    .benefits-section h2 {
        font-size: 3.7rem;
        margin-bottom: 5rem;
        padding-top: 4rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .benefit-item p {
        font-size: 1.65rem;
    }

    .benefits-bottom-text {
        font-size: 1.7rem;
        line-height: 1.7;
    }

    /* ================= MONSERRAT ================= */
    .monserrat-grid {
        display: flex;
        flex-direction: column;
    }

    /* TEXTO */
    .monserrat-content {
        order: 1;
        padding: 4rem 2rem;
        text-align: center;
    }

    .monserrat-content h2 {
        font-size: 3.7rem;
        text-align: center;
    }

    .monserrat-content p {
        font-size: 1.65rem;
        text-align: justify;
        text-justify: inter-word;
    }

    /* IMAGEN */
    .monserrat-image {
        order: 2;
        width: 100%;
        margin-top: 3rem;
    }

    .monserrat-image img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
    }

    /* ICONOS */
    .monserrat-features {
        order: 3;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        align-items: start;
        gap: 3rem 2rem;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        padding-top: 2rem;
    }

    .monserrat-feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        width: 130px;
    }

    .monserrat-feature svg {
        margin-bottom: .5rem;
    }

    .monserrat-feature span {
        font-size: 1.5rem;
    }

    /* ================= EXPERIENCE ================= */
    .experience-section {
        padding: 6rem 0;
    }

    .experience-section h2 {
        font-size: 3.3rem;
        margin-bottom: 4rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-steps {
        grid-template-columns: 1fr;
        gap: 4rem;
        margin-top: 2rem;
    }

    .experience-step {
        max-width: 100%;
    }

    .experience-step h3 {
        font-size: 2rem;
    }

    .experience-step p {
        max-width: 260px;
        font-size: 1.65rem;
    }

    .experience-image {
        justify-content: center;
        margin-top: 0;
        margin-right: 0;
    }

    /* ================= KITS =================
    .kits-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .kits-content {
        padding: 5rem 2rem;
        text-align: center;
    }

    .kits-content h2 {
        font-size: 3.7rem;
    }

    .kits-content p {
        font-size: 1.65rem;
        line-height: 1.8;
        text-align: center;
    }

    .kits-benefits {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        align-items: start;
        gap: 3rem 2rem;
        width: 100%;
        max-width: 320px;
        margin: 4rem 2 0 2;
    }

    .kits-benefit span {
        font-size: 1.6rem;
    }

    .kits-benefit:nth-child(4) {
        grid-column: 2;
    }

    .kits-image {
        margin-top: -8rem;
    }*/

    /* ================= CTA ================= */
    .cta-section {
        padding: 1rem 0;
    }

    .cta-container {
        grid-template-columns: 1fr;
        gap: 5rem;
        text-align: center;
    }

    .cta-left h2 {

        font-size: 3.5rem;
        line-height: 1, 2;
        margin-bottom: 4rem;
    }

    .cta-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        align-items: start;
        gap: 3rem 2rem;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .cta-feature:last-child {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .cta-feature span {
        font-size: 1.5rem;
    }

    .cta-feature svg {
        justify-content: center;
    }

    .cta-right p {
        text-align: justify;
        font-size: 1.65rem;
        line-height: 1.8;
        max-width: 100%;
    }

    .cta-right h3 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 340px;
        font-size: 2rem;
    }

    .cta-btn-secondary {
        gap: 1rem;
    }

    /* ================= FOOTER ================= */
    .footer {
        padding: 2rem 0;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo img {
        width: 140px;
    }

    .footer-social {
        order: 2;
        display: flex;
        justify-content: center;
        gap: 2rem;
    }

    .footer-social svg {
        width: 40px;
        height: 40px;
    }

    .footer-center {
        order: 3;
    }

    .footer-center p {
        margin: 0;
    }

    /* ================= WHATSAPP ================= */
    .whatsapp-float {
        width: 60px;
        height: 60px;
        right: 18px;
        bottom: 70px;
    }
}

/* ================= EXTRAS ================= */
img,
div,
section,
a,
button {
    -webkit-tap-highlight-color: transparent;
}

section {
    overflow-x: hidden;
}


/* Tabletas en horizontal (landscape) */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .hero h1 {
        font-size: 4.5rem; 
        line-height: 1.1;
        margin-top: -1rem;
    }

    .hero-description,
    .hero-description.small {
        font-size: 1.85rem; 
        max-width: 600px;   
        margin: 0 auto;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        margin-top: 2rem;
    }
}