/* =========================================
   DESIGN SYSTEM - Modern Wellness Aesthetic
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

:root {
    --stone: #f5f3ef;
    --stone-mid: #ede9e2;
    --stone-dark: #d6cfc4;
    --sage: #8b9a78;
    --sage-light: #a8b898;
    --forest: #2c3e2d;
    --forest-mid: #3d5240;
    --btn-color: #7a9480;
    --terra: #c4a882;
    --terra-light: #d4bc9e;
    --white: #ffffff;
    --ink: #1a1a18;
    --ink-mid: #3a3a36;
    --ink-light: #6b6b64;
    --ink-faint: #9a9a90;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --shadow-soft: 0 4px 30px rgba(44, 62, 45, 0.07);
    --shadow-mid: 0 10px 50px rgba(44, 62, 45, 0.10);
    --shadow-strong: 0 20px 60px rgba(44, 62, 45, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =========================================
   RESET & BASE
   ========================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    scroll-padding-top: 90px;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--stone);
    color: var(--ink-mid);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    color: var(--forest);
    line-height: 1.15;
    font-weight: 400;
}

p {
    color: var(--ink-light);
    line-height: 1.75;
}

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

.container-small {
    width: 80%;
    max-width: 820px;
    margin: 0 auto;
}

.container-extenso {
    width: 85%;
    max-width: 1000px;
    margin: 0 auto;
}

/* =========================================
   NAVIGATION
   ========================================= */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    height: clamp(90px, 12vw, 200px);
    background: rgba(245, 243, 239, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 154, 120, 0.15);
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(245, 243, 239, 0.98);
    box-shadow: var(--shadow-soft);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.nav-logo-img {
    height: clamp(60px, 10vw, 180px);
    width: auto;
    filter: brightness(0) saturate(100%) invert(20%) sepia(30%) saturate(500%) hue-rotate(80deg) brightness(60%);
    transition: var(--transition);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--forest);
    letter-spacing: 0.01em;
    display: flex;
    align-items: baseline;
    gap: 12px;
    white-space: nowrap;
}

.logo-text span {
    display: inline;
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

/* Hamburger: hidden on desktop */
.nav-hamburger {
    display: none;
}

nav ul li a {
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--ink-light);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.01em;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--forest);
    background: rgba(139, 154, 120, 0.1);
}

.btn-nav {
    background: var(--btn-color) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 500 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.02em;
    transition: var(--transition) !important;
    margin-left: 8px;
}

.btn-nav:hover {
    background: var(--forest) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(44, 62, 45, 0.3) !important;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--btn-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary:hover {
    background: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(44, 62, 45, 0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--btn-color);
    text-decoration: none;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: 1.5px solid var(--btn-color);
    transition: var(--transition);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-outline:hover {
    background: var(--btn-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--forest);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-text-link::after {
    display: none;
}

.btn-text-link:hover {
    text-decoration: underline;
    gap: 10px;
}

/* Tags */
.tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    background: rgba(139, 154, 120, 0.12);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

/* =========================================
   HERO
   ========================================= */
.hero {
    position: relative;
    min-height: calc(100vh - clamp(90px, 12vw, 200px));
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: clamp(40px, 5vh, 80px) 8% clamp(40px, 5vh, 80px) 10%;
    background: var(--stone);
    position: relative;
    z-index: 2;
}

.hero-left::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 0;
    bottom: 0;
    width: 120px;
    background: var(--stone);
    clip-path: ellipse(100% 50% at 0% 50%);
    z-index: 3;
}

.hero-content {
    max-width: 580px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--terra);
}

.hero-eyebrow-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terra);
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 4.2rem);
    font-weight: 300;
    color: var(--forest);
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

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

.hero-content>p {
    font-size: 1.05rem;
    color: var(--ink-light);
    line-height: 1.75;
    margin-bottom: 44px;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
}

.hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(139, 154, 120, 0.15), transparent 40%);
}

/* Floating badge */
.hero-badge {
    position: absolute;
    bottom: 48px;
    left: 48px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-strong);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(10px);
}

.hero-badge-icon {
    width: 44px;
    height: 44px;
    background: rgba(139, 154, 120, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-badge-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--forest);
    font-weight: 500;
}

.hero-badge-text span {
    font-size: 0.78rem;
    color: var(--ink-faint);
}

/* =========================================
   WELCOME STRIP
   ========================================= */
.welcome-strip {
    background: #6b7d6c;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.welcome-strip::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(139, 154, 120, 0.12);
    pointer-events: none;
}

.welcome-strip::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 15%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(196, 168, 130, 0.08);
    pointer-events: none;
}

.welcome-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.welcome-quote-block {
    border-left: 2px solid rgba(196, 168, 130, 0.4);
    padding-left: 40px;
}

.welcome-quote-block blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.45;
    margin-bottom: 20px;
}

.welcome-quote-block cite {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terra-light);
    font-style: normal;
}

.welcome-text-block p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 20px;
    font-size: 1.0rem;
    line-height: 1.8;
}

.welcome-text-block p:last-child {
    margin-bottom: 0;
}

.welcome-text-block strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* =========================================
   COMMITMENT SECTION
   ========================================= */
.my-commitment {
    padding: 0;
    background: #e8ede3;
    position: relative;
    overflow: hidden;
}

.my-commitment::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(139, 154, 120, 0.1);
    pointer-events: none;
}

.my-commitment::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(139, 154, 120, 0.07);
    pointer-events: none;
}

.commitment-header {
    padding: 80px 5% 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    display: block;
    margin-bottom: 14px;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    color: var(--forest);
    margin-bottom: 0;
    line-height: 1.15;
    max-width: 480px;
    white-space: nowrap;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(139, 154, 120, 0.25);
}

.commit-item {
    padding: 52px 40px 60px;
    border-right: 1px solid rgba(139, 154, 120, 0.25);
    position: relative;
    transition: var(--transition);
    cursor: default;
    overflow: hidden;
}

.commit-item:last-child {
    border-right: none;
}

.commit-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(139, 154, 120, 0.07);
    opacity: 0;
    transition: var(--transition);
}

.commit-item:hover::before {
    opacity: 1;
}

.commit-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 300;
    color: rgba(44, 62, 45, 0.1);
    line-height: 1;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    transition: var(--transition);
}

.commit-item:hover .commit-number {
    color: rgba(44, 62, 45, 0.18);
}

.commit-icon {
    width: 36px;
    height: 36px;
    color: var(--sage);
    margin-bottom: 20px;
    display: block;
}

.commit-item h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--forest);
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.commit-item p {
    font-size: 0.88rem;
    color: var(--ink-light);
    line-height: 1.75;
}

.commitment-bottom-bar {
    padding: 28px 5%;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(139, 154, 120, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.commitment-bottom-bar span {
    font-size: 0.78rem;
    color: var(--ink-faint);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.commitment-bottom-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.commitment-bottom-dots i {
    width: 6px;
    height: 6px;
    background: rgba(139, 154, 120, 0.4);
    border-radius: 50%;
    display: inline-block;
}

.commitment-bottom-dots i:first-child {
    background: var(--sage);
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about {
    background: var(--stone);
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.about-grid.reverse {
    grid-template-columns: 0.75fr 1fr;
}

.about-salmon-wrapper {
    background: #e8ede3;
    padding: 80px 0;
    margin: 0 0 100px 0;
}

.about-grid.reverse .about-text-column {
    order: 2;
}

.about-grid.reverse .about-image-column {
    order: 1;
}

.about-text-column h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    margin-bottom: 28px;
}

.about-text-column p {
    font-size: 1.0rem;
    line-height: 1.85;
    color: var(--ink-light);
    margin-bottom: 18px;
}

.profile-img-arch {
    width: 100%;
    border-radius: 50% 50% var(--radius-lg) var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-mid);
}

.about-image-column {
    position: relative;
}

.about-image-column::before {
    content: '';
    position: absolute;
    inset: -12px -12px 12px 12px;
    border-radius: 50% 50% var(--radius-lg) var(--radius-lg);
    border: 1px solid var(--stone-dark);
    z-index: 0;
    pointer-events: none;
}

.about-image-column img {
    position: relative;
    z-index: 1;
}

/* Values grid */
.valores-grid-extend {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 16px;
    row-gap: 32px;
    margin-top: 48px;
}

.valor-card {
    background: var(--white);
    padding: 28px 24px 32px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(139, 154, 120, 0.15);
    border-left: 3px solid var(--sage);
    box-shadow: none;
    transition: var(--transition);
}

.valor-card:hover {
    border-left-color: var(--forest);
    box-shadow: 0 6px 24px rgba(44, 62, 45, 0.07);
    transform: translateY(-2px);
}

.valor-card h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--forest);
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.valor-card p {
    font-size: 1rem;
    color: var(--ink-light);
    line-height: 1.75;
}

.service-icon {
    font-size: 2rem;
    color: var(--sage);
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

/* Formation */
.formacion-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 70px;
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.formacion-academica h3,
.formacion-complementaria h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--stone-dark);
}

.academica-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.academica-list li {
    font-size: 1.05rem;
    color: var(--ink-light);
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.academica-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
}

.complementaria-scroll {
    max-height: 280px;
    overflow-y: auto;
    padding-right: 12px;
}

.complementaria-scroll::-webkit-scrollbar {
    width: 4px;
}

.complementaria-scroll::-webkit-scrollbar-track {
    background: var(--stone);
}

.complementaria-scroll::-webkit-scrollbar-thumb {
    background: var(--sage-light);
    border-radius: 99px;
}

.complementaria-scroll ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.complementaria-scroll ul li {
    font-size: 1rem;
    color: var(--ink-light);
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.complementaria-scroll ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--terra);
    font-weight: 300;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services {
    background: var(--white);
    padding: 120px 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--forest);
    margin-bottom: 16px;
    line-height: 1.15;
    text-align: center;
}

.services-intro-text {
    max-width: 100%;
    margin-bottom: 60px;
    text-align: center;
}

.services-intro-text p {
    font-size: 1.05rem;
    color: var(--ink-light);
    line-height: 1.8;
}

.servicios-cuatro-columnas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--stone-mid);
    border-radius: var(--radius-lg);
    overflow: hidden;
    align-items: stretch;
}

.col-serv {
    background: var(--white);
    padding: 44px 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    height: 100%;
    align-self: stretch;
}

@media (hover: hover) {
    .col-serv:hover {
        background: var(--stone);
    }
}

.col-serv i {
    font-size: 2.2rem;
    color: var(--sage);
    margin-bottom: 24px;
}

.col-serv h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 14px;
}

.col-serv p {
    font-size: 0.9rem;
    color: var(--ink-faint);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 24px;
}

.col-serv .btn-text-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

/* =========================================
   FORMATS SECTION
   ========================================= */
.formatos-sesion {
    background: var(--stone);
    padding: 120px 0;
}

.section-title-left {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--forest);
    margin-bottom: 48px;
}

.formatos-grid-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 70px;
}

.formato-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border-top: 3px solid var(--sage);
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.formato-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-mid);
}

.formato-icon-top {
    font-size: 2.4rem;
    color: var(--sage);
    margin-bottom: 24px;
    display: block;
}

.formato-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 14px;
}

.formato-card h3 span {
    font-style: italic;
    color: var(--sage);
}

.formato-card p {
    font-size: 0.95rem;
    color: var(--ink-light);
    line-height: 1.75;
}

/* Process Steps */
.metodologia-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 60px;
}

.metodo-item {
    position: relative;
    background: #e8ede3;
    border-radius: var(--radius-lg);
    padding: 36px 28px 40px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    overflow: hidden;
}

.metodo-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-mid);
}

.metodo-item:not(:last-child)::after {
    display: none;
}

.metodo-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90px;
    margin-bottom: 4px;
}

.metodo-num-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    font-family: var(--font-body);
    font-size: 7rem;
    font-weight: 300;
    font-style: normal;
    color: rgba(139, 154, 120, 0.22);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.metodo-num-bg {
    display: none;
}

.metodo-icon-botanical {
    font-size: 2.2rem;
    color: var(--sage);
    position: relative;
    z-index: 1;
}

.metodo-separator {
    width: 100%;
    position: relative;
    margin: 16px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metodo-separator::before {
    content: '';
    position: absolute;
    left: -28px;
    right: -28px;
    top: 50%;
    height: 1px;
    background: rgba(139, 154, 120, 0.3);
}

.metodo-dot {
    width: 7px;
    height: 7px;
    background: var(--sage);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.metodo-dot-terra {
    background: var(--terra);
}

.metodo-content {
    width: 100%;
    text-align: left;
}

.metodo-content h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 16px;
}

.metodo-content p {
    font-size: 0.92rem;
    color: var(--ink-light);
    line-height: 1.75;
}

.metodo-line {
    display: none;
}

.metodo-icon {
    display: none;
}

/* =========================================
   FREE SESSION SECTION
   ========================================= */
.visita-gratuita {
    background: #6b7d6c;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.visita-gratuita::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(139, 154, 120, 0.1);
    pointer-events: none;
}

.visita-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.visita-text .tag {
    background: rgba(196, 168, 130, 0.2);
    color: var(--terra-light);
}

.visita-text h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 28px;
    line-height: 1.15;
}

.visita-intro {
    font-size: 1.0rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin-bottom: 40px;
}

.visita-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.visita-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.opiniones {
    background: var(--white);
    padding: 120px 0;
}

.opiniones-header {
    margin-bottom: 60px;
}

.tag-small {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    display: block;
    margin-bottom: 12px;
}

.opiniones-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--forest);
}

.testimonial-slider {
    position: relative;
    background: var(--stone);
    border-radius: var(--radius-lg);
    padding: 60px 80px;
    min-height: 260px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.testimonial-item {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    animation: fadeSlide 0.5s ease;
}

.testimonial-item.active {
    display: flex;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-style: italic;
    color: var(--ink-mid);
    line-height: 1.6;
    font-weight: 300;
    order: 2;
}

.author-init {
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--ink-mid);
    font-family: var(--font-display);
    font-style: normal;
    order: 1;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--stone-dark);
    border-radius: 50%;
    background: var(--white);
    color: var(--forest);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}

.dots-container {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--stone-dark);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--forest);
    width: 18px;
    border-radius: 3px;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact {
    background: var(--stone);
    padding: 120px 0;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    box-shadow: var(--shadow-mid);
}

.contact-form-side {
    padding: 60px 56px;
    background: #6b7d6c;
}

.contact-form-side h2 {
    font-size: 2.4rem;
    font-weight: 300;
    margin-bottom: 12px;
    color: var(--white);
}

.contact-intro {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.contact-method-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-method-item a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
    padding: 4px 0;
}

.contact-method-item a:hover {
    color: var(--white);
}

.contact-method-item a i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.wa-link {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 12px !important;
    border-radius: var(--radius-pill);
    font-size: 0.82rem !important;
}

.contact-form-side form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form-side input,
.contact-form-side textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--stone);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--ink-mid);
    transition: var(--transition);
    outline: none;
    resize: none;
}

.contact-form-side input::placeholder,
.contact-form-side textarea::placeholder {
    color: var(--ink-faint);
}

.contact-form-side input:focus,
.contact-form-side textarea:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.contact-form-side textarea {
    min-height: 120px;
}

.btn-primary-contact {
    width: 100%;
    padding: 16px;
    background: #8b9a78;
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.btn-primary-contact:hover {
    background: var(--sage);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(44, 62, 45, 0.2);
}

.contact-image-side {
    position: relative;
    overflow: hidden;
}

.contact-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: var(--ink);
    padding: 32px 0;
    text-align: center;
}

footer p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

footer strong {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* =========================================
   MODAL
   ========================================= */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 24, 0.75);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 760px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-strong);
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--ink-faint);
    line-height: 1;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--forest);
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
}

/* =========================================
   DETAIL PAGES (Sub-pages)
   ========================================= */
.section-hero-detalle {
    background: #9bad9b;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.section-hero-detalle::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.section-hero-detalle::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: 30%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.section-hero-detalle .container {
    position: relative;
    z-index: 1;
}

.hero-botanical-deco {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 360px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.section-hero-detalle h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 300;
    color: var(--white);
    margin: 12px 0;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
    max-width: 800px;
}

.detalle-texto-centrado {
    padding: 80px 0;
    background: var(--white);
}

.p-justificado {
    font-size: 1.0rem;
    color: var(--ink-light);
    line-height: 1.85;
    text-align: justify;
    margin-bottom: 24px;
}

.galeria-cuatro-fotos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 48px 0;
}

.galeria-cuatro-fotos img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.grid-cards-section {
    background: var(--stone);
    padding: 80px 0;
}

.valores-title-section {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 300;
    color: var(--forest);
    margin-bottom: 40px;
}

/* =========================================
   SEPARATORS
   ========================================= */
.botanical-separator {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 60px auto;
    max-width: 600px;
}

.botanical-separator .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(196, 168, 130, 0.4), transparent);
}

.botanical-separator .icon-leaf {
    width: 32px;
    height: 32px;
    color: var(--sage);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: 80px 6%;
    }

    .hero-left::after {
        display: none;
    }

    .hero-right {
        height: 60vw;
        min-height: 380px;
        max-height: 520px;
    }

    .hero-right img {
        object-position: right 15%;
    }

    .hero-badge {
        bottom: 20px;
        left: 20px;
    }

    .welcome-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .commit-item {
        border-bottom: 1px solid rgba(139, 154, 120, 0.15);
    }

    .commit-item:nth-child(even) {
        border-right: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid.reverse .about-text-column,
    .about-grid.reverse .about-image-column {
        order: unset;
    }

    .valores-grid-extend {
        grid-template-columns: repeat(2, 1fr);
    }

    .servicios-cuatro-columnas {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .metodo-item::after {
        display: none;
    }

    .visita-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-image-side {
        height: 300px;
    }

    .formacion-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 5%;
        height: 68px;
    }

    .nav-logo-img {
        height: 42px;
    }

    .logo-text {
        font-size: 1.05rem;
    }

    nav ul {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(245, 243, 239, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 6%;
        gap: 4px;
        border-bottom: 1px solid rgba(139, 154, 120, 0.2);
        box-shadow: 0 10px 30px rgba(44, 62, 45, 0.08);
        z-index: 999;
    }

    nav ul.open {
        display: flex;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .btn-nav {
        margin-top: 8px;
        margin-left: 0 !important;
        width: 100%;
        text-align: center;
    }

    .nav-hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 8px;
        border: none;
        background: none;
    }

    .nav-hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--forest);
        border-radius: 2px;
        transition: var(--transition);
    }

    .nav-hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .commit-item {
        border-right: none;
        border-bottom: 1px solid rgba(139, 154, 120, 0.15);
    }

    .commit-item:last-child {
        border-bottom: none;
    }

    .commitment-header {
        padding: 60px 5% 40px;
    }

    .formatos-grid-cards {
        grid-template-columns: 1fr;
    }

    .metodologia-grid {
        grid-template-columns: 1fr;
    }

    .servicios-cuatro-columnas {
        grid-template-columns: 1fr;
    }

    .valores-grid-extend {
        grid-template-columns: repeat(2, 1fr);
    }

    .galeria-cuatro-fotos {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-side {
        padding: 40px 28px;
    }

    .testimonial-slider {
        padding: 48px 56px;
    }

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

    .welcome-quote-block blockquote {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .valores-grid-extend {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   TU ESPACIO PAGE
   ========================================= */
.espacio-bloque-alternado {
    background: var(--stone);
}

.espacio-fila {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.espacio-fila-reverse {
    direction: rtl;
}

.espacio-fila-reverse > * {
    direction: ltr;
}

.espacio-fila-tinted {
    background: var(--white);
}

.espacio-foto {
    overflow: hidden;
    position: relative;
}

.espacio-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.espacio-foto:hover img {
    transform: scale(1.03);
}

.espacio-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 70px;
}

.espacio-texto h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 300;
    color: var(--forest);
    margin-bottom: 20px;
    line-height: 1.2;
}

.espacio-texto p {
    font-size: 1rem;
    color: var(--ink-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.espacio-texto p:last-child { margin-bottom: 0; }

.espacio-galeria-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
    height: 520px;
    overflow: hidden;
}

.espacio-galeria-grande {
    height: 100%;
    overflow: hidden;
}

.espacio-galeria-grande img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
}

.espacio-galeria-pequeñas {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    overflow: hidden;
}

.espacio-galeria-pequeñas img {
    width: 100%;
    flex: 1;
    min-height: 0;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
}

@media (max-width: 900px) {
    .espacio-fila {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .espacio-fila-reverse { direction: ltr; }
    .espacio-foto { height: 300px; }
    .espacio-texto { padding: 40px 32px; }
    .espacio-galeria-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    .espacio-galeria-grande { height: 300px; }
    .espacio-galeria-pequeñas { flex-direction: row; height: 200px; }
}

/* =========================================
   WHATSAPP FLOATING WIDGET
   ========================================= */
.wa-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.wa-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.wa-fab svg {
    width: 30px;
    height: 30px;
}

.wa-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.wa-fab.active {
    transform: rotate(0deg);
}

.wa-fab-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.wa-bubble {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    width: 300px;
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: bottom right;
}

.wa-bubble.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.wa-bubble-header {
    background: #25d366;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-bubble-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-bubble-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(20%) sepia(30%) saturate(500%) hue-rotate(80deg) brightness(60%);
}

.wa-bubble-info {
    flex: 1;
}

.wa-bubble-info strong {
    display: block;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.wa-bubble-info span {
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
}

.wa-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.wa-close:hover { opacity: 1; }

.wa-bubble-body {
    padding: 16px;
    background: #f0f2f5;
}

.wa-message {
    background: white;
    border-radius: 0 12px 12px 12px;
    padding: 12px 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: relative;
}

.wa-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    border: 8px solid transparent;
    border-top-color: white;
    border-right-color: white;
}

.wa-message p {
    font-size: 0.88rem;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

.wa-bubble-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s;
}

.wa-bubble-btn:hover { background: #22c55e; }

.wa-bubble-btn svg {
    width: 20px;
    height: 20px;
}

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    z-index: 999999;
    padding: 0 24px 24px;
    transition: bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-banner-inner {
    background: var(--ink);
    color: white;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
}

.cookie-banner-text p {
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--sage-light);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn-reject {
    padding: 10px 22px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.cookie-btn-reject:hover {
    color: white;
    border-color: rgba(255,255,255,0.5);
}

.cookie-btn-accept {
    padding: 10px 22px;
    background: var(--btn-color);
    color: white;
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.cookie-btn-accept:hover {
    background: var(--sage);
    transform: translateY(-1px);
}

/* Footer legal links */
.footer-legal {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover { color: rgba(255,255,255,0.8); }

.footer-legal span { color: rgba(255,255,255,0.25); font-size: 0.8rem; }

/* Bloque texto completo Tu Espacio */
.espacio-bloque-texto-completo {
    background: #e8ede3;
    padding: 80px 0;
}

.espacio-bloque-texto-inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.espacio-bloque-texto-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    font-weight: 300;
    color: var(--forest);
    margin-bottom: 40px;
    line-height: 1.2;
}

.espacio-texto-columnas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.espacio-texto-columnas p {
    font-size: 1rem;
    color: var(--ink-light);
    line-height: 1.85;
    margin-bottom: 16px;
}

.espacio-cita-bloque {
    border-left: 3px solid var(--sage);
    padding: 20px 32px;
    background: rgba(255,255,255,0.5);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.espacio-cita-bloque p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 300;
    color: var(--forest);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .espacio-texto-columnas { grid-template-columns: 1fr; gap: 0; }
}


/* =========================================
   MOBILE FIXES - MINIMAL
   ========================================= */
@media (max-width: 768px) {
    /* Fix justified text */
    .p-justificado { text-align: left; }
    .about-text-column p { text-align: left; }

    /* Fix hero image crop on mobile */
    .hero-right {
        height: 55vw;
        min-height: 320px;
    }
    .hero-right img {
        object-position: right top;
    }

    /* Fix logo size on mobile */
    .nav-logo-img { height: clamp(40px, 8vw, 70px); }

    /* Fix about-salmon on mobile */
    .about-salmon-wrapper {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    .about-salmon-wrapper .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about-salmon-wrapper .about-grid .about-text-column,
    .about-salmon-wrapper .about-grid .about-image-column {
        order: unset;
    }

    /* Fix WhatsApp on iOS */
    .wa-widget {
        bottom: 16px;
        right: 16px;
        z-index: 99999;
    }
    .wa-fab {
        width: 54px;
        height: 54px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    .wa-bubble { width: calc(100vw - 40px); }

    /* Fix cookie banner */
    .cookie-banner-inner {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        border-radius: 16px 16px 0 0;
    }
    .cookie-banner-actions { width: 100%; display: flex; gap: 10px; }
    .cookie-btn-reject, .cookie-btn-accept { flex: 1; text-align: center; }
}

/* =========================================
   IPAD / TABLET (768px - 1024px)
   ========================================= */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Nav - compact for 7 items */
    nav {
        height: clamp(70px, 9vw, 100px);
        padding: 0 2%;
    }

    nav ul {
        display: flex;
        gap: 0px;
    }

    nav ul li a {
        font-size: 0.72rem;
        padding: 6px 7px;
        letter-spacing: 0;
    }

    .btn-nav {
        padding: 7px 10px !important;
        font-size: 0.72rem !important;
        margin-left: 4px !important;
    }

    .nav-logo-img {
        height: clamp(50px, 7vw, 80px);
    }

    .logo-text {
        font-size: 0.85rem;
    }
    .logo-text span {
        font-size: 0.7rem;
    }

    /* Hero - keep two columns on iPad */
    .hero {
        grid-template-columns: 1fr 1fr;
        min-height: calc(100vh - clamp(80px, 10vw, 120px));
    }

    .hero-left {
        padding: 40px 5% 40px 6%;
    }

    .hero-right {
        height: auto;
        min-height: unset;
        max-height: unset;
    }

    .hero-right img {
        object-position: right top;
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    }

    /* Services - 2 columns */
    .servicios-cuatro-columnas {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Values - 2 columns */
    .valores-grid-extend {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Metodologia - 2 columns */
    .metodologia-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About grid */
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    /* Espacio fila */
    .espacio-fila {
        grid-template-columns: 1fr 1fr;
    }

    .espacio-foto {
        height: 320px;
    }

    /* Contact */
    .contact-card {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   IPHONE OPTIMIZATIONS (max 768px)
   ========================================= */
@media (max-width: 768px) {

    /* Hero - stack vertically, text first */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: 40px 6% 32px;
        order: 1;
    }

    .hero-left::after { display: none; }

    .hero-right {
        order: 2;
        height: 65vw;
        min-height: 260px;
        max-height: 380px;
    }

    .hero-right img {
        object-position: right top;
    }

    .hero-badge {
        bottom: 12px;
        left: 12px;
        padding: 10px 14px;
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
        margin-bottom: 16px;
    }

    .hero-content > p {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .btn-primary, .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Welcome strip */
    .welcome-strip { padding: 60px 0; }
    .welcome-quote-block blockquote { font-size: 1.2rem; }

    /* Commitment */
    .commitment-header { padding: 48px 5% 32px; }
    .section-heading { font-size: clamp(1.6rem, 5vw, 2rem); white-space: normal; }
    .commit-item { padding: 32px 24px; }
    .commit-number { font-size: 3.5rem; }

    /* About */
    .about { padding: 60px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
    .about-salmon-wrapper { padding: 48px 0; margin-bottom: 48px; }
    .about-salmon-wrapper .about-grid { grid-template-columns: 1fr; gap: 24px; }
    .profile-img-arch { aspect-ratio: 4/3; }

    /* Valores */
    .valores-grid-extend { grid-template-columns: 1fr; row-gap: 16px; }

    /* Services */
    .services { padding: 60px 0; }
    .servicios-cuatro-columnas { grid-template-columns: 1fr; gap: 0; }
    .col-serv { padding: 32px 24px; border-bottom: 1px solid var(--stone-mid); }
    .col-serv .btn-text-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 0;
        font-size: 1rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    /* Formatos */
    .formatos-grid-cards { grid-template-columns: 1fr; }
    .formato-card { padding: 36px 28px; }

    /* Metodologia */
    .metodologia-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .metodo-item { padding: 24px 16px 28px; }
    .metodo-num-watermark { font-size: 4rem; }
    .metodo-icon-wrapper { height: 65px; }
    .metodo-content h4 { font-size: 0.65rem; }
    .metodo-content p { font-size: 0.82rem; }

    /* Visita gratuita */
    .visita-gratuita { padding: 60px 0; }
    .visita-grid { grid-template-columns: 1fr; }

    /* Testimonials */
    .testimonial-slider {
        padding: 40px 24px 70px;
        min-height: 200px;
    }

    .prev-btn, .next-btn {
        top: auto;
        bottom: 16px;
        transform: none;
        width: 40px;
        height: 40px;
    }

    .prev-btn { left: calc(50% - 52px); }
    .next-btn { right: calc(50% - 52px); }
    .testimonial-text { font-size: 1rem; }

    /* Contact */
    .contact { padding: 60px 0; }
    .contact-card { grid-template-columns: 1fr; }
    .contact-form-side { padding: 32px 24px; }
    .contact-image-side { height: 220px; }

    /* Footer */
    .footer-legal { flex-direction: column; gap: 6px; }
    .footer-legal span { display: none; }

    /* Cookie banner */
    .cookie-banner-inner {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        border-radius: 16px 16px 0 0;
    }
    .cookie-banner-actions { width: 100%; display: flex; gap: 10px; }
    .cookie-btn-reject, .cookie-btn-accept { flex: 1; text-align: center; }

    /* WhatsApp */
    .wa-widget { bottom: 16px; right: 16px; z-index: 99999; }
    .wa-fab {
        width: 52px; height: 52px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    .wa-bubble { width: calc(100vw - 40px); }

    /* Tu Espacio */
    .espacio-fila { grid-template-columns: 1fr; min-height: auto; }
    .espacio-fila-reverse { direction: ltr; }
    .espacio-fila-reverse > * { direction: ltr; }
    .espacio-foto { height: 260px; }
    .espacio-texto { padding: 32px 24px; }
    .espacio-texto-columnas { grid-template-columns: 1fr; }

    /* Section hero detalle (subpages) */
    .section-hero-detalle { padding: 60px 0 48px; }
    .section-hero-detalle h1 { font-size: clamp(2rem, 7vw, 3rem); }
    .hero-botanical-deco { display: none; }

    /* Galeria fotos subpages */
    .galeria-cuatro-fotos { grid-template-columns: repeat(2, 1fr); gap: 8px; }

    /* P justificado */
    .p-justificado { text-align: left; }
    .about-text-column p { text-align: left; }
}

/* Extra small iPhones (SE, mini) */
@media (max-width: 390px) {
    .metodologia-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 1.7rem; }
    .nav-logo-img { height: 36px; }
    .logo-text { font-size: 0.95rem; }
}

/* Global iOS touch fix */
@media (max-width: 1024px) {
    a, button {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
}

/* =========================================
   DISABLE HOVER EFFECTS ON TOUCH DEVICES
   ========================================= */
@media (hover: none) and (pointer: coarse) {
    .btn-primary:hover {
        background: var(--btn-color);
        transform: none;
        box-shadow: none;
    }

    .btn-outline:hover {
        background: transparent;
        color: var(--btn-color);
        transform: none;
    }

    .btn-primary:active {
        background: var(--forest);
        transform: scale(0.98);
    }

    .btn-outline:active {
        background: var(--btn-color);
        color: var(--white);
        transform: scale(0.98);
    }

    .btn-nav:hover {
        background: var(--btn-color) !important;
        transform: none;
    }

    .btn-text-link:hover {
        gap: 6px;
    }

    .btn-text-link:hover::after {
        width: 0;
    }

    .prev-btn:hover, .next-btn:hover {
        background: var(--white);
        color: var(--forest);
        border-color: var(--stone-dark);
    }

    .prev-btn:active, .next-btn:active {
        background: var(--forest);
        color: var(--white);
    }
}

/* Remove transitions on touch - speeds up tap response */
@media (hover: none) and (pointer: coarse) {
    .btn-primary,
    .btn-outline,
    .btn-nav,
    .btn-text-link,
    a, button {
        transition: none !important;
        -webkit-transition: none !important;
    }
}

/* =========================================

/* iPhone tap targets - min 44px height only */
@media (max-width: 768px) {
    .btn-primary { min-height: 48px; }
    .btn-outline { min-height: 48px; }
    .btn-nav { min-height: 44px; }
    .cookie-btn-accept { min-height: 48px; }
    .cookie-btn-reject { min-height: 48px; }
    .prev-btn { min-height: 48px; min-width: 48px; }
    .next-btn { min-height: 48px; min-width: 48px; }
    .wa-fab { min-height: 54px; min-width: 54px; }
    .nav-hamburger { min-height: 44px; min-width: 44px; }
    .col-serv .btn-text-link { min-height: 44px; }
}

/* =========================================
   FIX TAPS iOS / ANDROID - BOTONES Y ENLACES
   ========================================= */

/* Asegurar que todos los enlaces y botones son tapeables en móvil */
a, button, [role="button"] {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* iOS Safari: los <a> sin href o con href="#" necesitan cursor:pointer para ser tapeables.
   Además, position:relative evita que capas transparentes los bloqueen. */
.btn-primary,
.btn-outline,
.btn-nav,
.btn-text-link {
    position: relative;
    z-index: 1;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    cursor: pointer;
    /* Área mínima de toque recomendada por Apple/Google: 44x44px */
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Fix específico para el hamburguesa en todas las páginas */
.nav-hamburger {
    position: relative;
    z-index: 1001;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px;
    border: none;
    background: none;
}

/* Fix: hero-left::after (la curva decorativa) puede bloquear los botones en móvil */
@media (max-width: 768px) {
    .hero-left::after {
        display: none;
        pointer-events: none;
    }

    /* Evitar que capas ::before / ::after de secciones bloqueen taps */
    .my-commitment::before,
    .my-commitment::after,
    .welcome-strip::before,
    .welcome-strip::after {
        pointer-events: none;
    }

    /* Botones hero: ancho completo y altura generosa para toque fácil */
    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        min-height: 52px;
        font-size: 1rem;
    }

    /* Leer más en tarjetas de servicios */
    .btn-text-link {
        min-height: 48px;
        padding: 12px 4px;
        display: inline-flex;
        align-items: center;
    }
}

/* =========================================
   FIX BOTONES "LEER MÁS" TERAPIAS - MÓVIL
   ========================================= */
@media (max-width: 768px) {

    /* La grid de servicios en móvil: cada tarjeta ocupa todo el ancho */
    .servicios-cuatro-columnas {
        overflow: visible;
        background: transparent;
        gap: 0;
    }

    .col-serv {
        /* Evitar que nada dentro de la tarjeta bloquee el enlace */
        overflow: visible;
        position: relative;
        z-index: 0;
    }

    /* El botón "Leer más" ocupa toda la anchura con zona de toque generosa */
    .col-serv .btn-text-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 52px;
        padding: 14px 0;
        font-size: 1rem;
        font-weight: 500;
        color: var(--forest);
        text-decoration: none;
        position: relative;
        z-index: 2;
        /* Área táctil extendida sin afectar visualmente */
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
        width: calc(100% + 32px);
        -webkit-tap-highlight-color: rgba(44, 62, 45, 0.08);
        touch-action: manipulation;
        cursor: pointer;
    }

    /* Hacer toda la tarjeta de servicio clicable como alternativa */
    .col-serv {
        cursor: pointer;
    }
}

/* =========================================
   FORMATOS DUO - NUEVO DISEÑO MODALIDADES
   ========================================= */
.formatos-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(139,154,120,0.2);
    max-width: 1060px;
    margin: 0 auto 0;
}

.formatos-duo-panel {
    padding: 60px 64px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.formatos-duo-left {
    background: #e8ede3;
    border-right: 1px solid rgba(139,154,120,0.2);
}

.formatos-duo-right {
    background: var(--white);
}

.formatos-duo-bgcircle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    width: 160px;
    height: 160px;
}

.formatos-duo-left .formatos-duo-bgcircle {
    background: rgba(139,154,120,0.1);
    top: -50px;
    right: -50px;
}

.formatos-duo-right .formatos-duo-bgcircle {
    background: rgba(139,154,120,0.06);
    bottom: -50px;
    left: -50px;
}

.formatos-duo-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.formatos-duo-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1;
    color: rgba(44,62,45,0.15);
}

.formatos-duo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: #3d5240;
}

.formatos-duo-left .formatos-duo-icon {
    background: rgba(44,62,45,0.1);
}

.formatos-duo-right .formatos-duo-icon {
    background: rgba(139,154,120,0.13);
}

.formatos-duo-panel h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 300;
    margin: 0 0 14px;
    color: var(--forest);
    line-height: 1.2;
}

.formatos-duo-panel h3 em {
    font-style: italic;
    color: var(--sage);
}

.formatos-duo-panel p {
    font-size: 0.92rem;
    line-height: 1.8;
    margin: 0 0 24px;
    color: var(--ink-light);
}

.formatos-duo-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    color: #3d5240;
    align-self: flex-start;
}

.formatos-duo-left .formatos-duo-tag {
    background: rgba(44,62,45,0.08);
    border: 1px solid rgba(44,62,45,0.12);
}

.formatos-duo-right .formatos-duo-tag {
    background: rgba(139,154,120,0.1);
    border: 1px solid rgba(139,154,120,0.22);
}

.formatos-duo-tag i {
    font-size: 0.72rem;
    color: var(--sage);
}

/* Botón mapa — mismo aspecto que el tag pero se comporta como botón */
.formatos-duo-btn-map {
    cursor: pointer;
    font-family: var(--font-body);
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.formatos-duo-btn-map:hover {
    background: rgba(44,62,45,0.15);
    box-shadow: 0 4px 16px rgba(44,62,45,0.12);
    transform: translateY(-1px);
}

.formatos-duo-btn-map:active {
    transform: scale(0.97);
}

@media (max-width: 768px) {
    .formatos-duo {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .formatos-duo-left {
        border-right: none;
        border-bottom: 1px solid rgba(139,154,120,0.2);
    }
}

/* Separador botánico a ancho completo (dentro de container) */
.botanical-separator-full {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 80px calc(-5%) 60px;
    width: calc(100% + 10%);
}

.botanical-separator-full .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(196,168,130,0.4), transparent);
}

.botanical-separator-full .icon-leaf {
    width: 32px;
    height: 32px;
    color: var(--sage);
    flex-shrink: 0;
}

/* Botón WhatsApp en panel online */
.formatos-duo-right .formatos-duo-btn-map {
    text-decoration: none;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.formatos-duo-right .formatos-duo-btn-map:hover {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.35);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.15);
    transform: translateY(-1px);
}

.formatos-duo-right .formatos-duo-btn-map:hover i {
    color: #25d366;
}

.formatos-duo-right .formatos-duo-btn-map:active {
    transform: scale(0.97);
}

/* =========================================
   FORM PRIVACY CHECKBOX
   ========================================= */
.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 4px 0 20px;
}

.form-privacy input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 3px;
    accent-color: var(--sage);
    cursor: pointer;
    border-radius: 3px;
}

.form-privacy label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    cursor: pointer;
}

.form-privacy label a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.form-privacy label a:hover {
    color: var(--terra-light);
}
