/* 
   MOPI - High End Design System 
   Concept: Minimalist, Boutique, Breathable, Nature-inspired.
*/

:root {
    /* --- PALETTE: Nature & Serenity --- */
    --bg-body: #FDFDFB;
    /* Warm White */
    --bg-section: #F4F4F0;
    /* Stone/Beige Light */
    --text-main: #2A2A2A;
    /* Soft Black (not pure black) */
    --text-muted: #666666;
    /* Editorial Grey */
    --accent: #8E8B82;
    /* Taupe/Earth */
    --border: #E5E5E0;

    /* --- TYPOGRAPHY --- */
    --font-heading: 'Canela', 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* --- SPACING --- */
    --container-width: 1200px;
    --section-padding: 120px 0;
    /* Breathable spacing */
    --card-padding: 40px;
}

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

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.8;
    /* High readability */
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden !important;
    /* Force no scroll */
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    /* Elegant thin weights */
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 2rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

p {
    margin-bottom: 1.5rem;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* --- COMPONENTS --- */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons: Minimal & Sophisticated */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--text-main);
    background: transparent;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: var(--text-main);
    color: #fff;
    padding-left: 50px;
    /* Micro-interaction */
}

/* --- FONTS --- */
/*
@font-face {
    font-family: 'Typogama-Ahsing';
    src: url('../fonts/Ahsing-Regular.otf') format('opentype'),
        url('../fonts/Ahsing-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
*/

/* Header */
header {
    height: 96px;
    padding: 0 120px 0 64px;
    position: fixed;
    top: 0;
    width: 100%;
    background: #F5F5F3;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

header .container {
    max-width: 100%;
    width: 100%;
    padding: 0;
}

header.scrolled,
header.header-solid {
    background: #F5F5F3;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Removed overrides for header-solid to maintain consistency */

/* Scroll Top Button */
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--text-main);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#scrollTopBtn:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
}

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

/* LOGO CUSTOM */
.logo {
    display: block;
    line-height: 0;
    padding-bottom: 0;
}

.logo img {
    height: 55px;
    /* Larger initial size */
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
    /* Smooth resizing */
}

header.scrolled .logo img {
    height: 40px;
    /* Shrinks on scroll */
}

/* Footer Logo Specifics */
footer .logo {
    margin-bottom: 15px;
    /* Space for tagline below */
    display: inline-block;
}

/* Removed scrolled logo override */

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1F1F1F;
    font-weight: 500;
    /* Medium */
    position: relative;
    padding-bottom: 0px;
    text-transform: none;
    /* User didn't specify uppercase */
    letter-spacing: normal;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: currentColor;
    /* Adapts to white or dark automatically */
    transition: width 0.3s ease;
}

/* Removed scrolled nav links override */

.nav-links a:hover,
.nav-links a.active {
    color: #9A8F7A;
    font-weight: 500;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    /* Expand underline */
}

/* Removed scrolled nav hover override */

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

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

.hero-sub {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: block;
}

/* --- IMAGERY & TEXTURES --- */
.bg-texture {
    background-color: #f7f7f5;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e0e0dc' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}

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

.visual-break {
    height: 1px;
    width: 100px;
    background: var(--accent);
    margin: 40px auto;
}

/* --- HERO ENHANCED --- */
/* --- HERO ENHANCED --- */
.hero {
    position: relative;
    min-height: 100vh;
    /* Allow content to dictate height + padding */
    display: block;
    /* Flow layout for spacing */
    padding-top: 300px;
    /* Increased top margin roughly to center/push down */
    padding-bottom: 160px;
    /* Adjusted to 160px as per requirements */
    background-color: #F5F5F3;
    overflow: hidden;
}

.hero .container {
    max-width: 100%;
    padding: 0 64px;
    margin: 0;
}

.hero-content {
    width: 100%;
    /* 100% */
    max-width: unset;
    /* Override 800px limit */
    padding: 0;
    margin-left: 36px;
    /* Offset to align with 'O' in Mopi logo */
    text-align: left;
}

.hero h1 {
    font-family: 'Canela', 'Playfair Display', serif;
    font-size: clamp(14px, 3.4vw, 72px);
    /* Fluid scaling to keep 1 line */
    line-height: 1.15;
    /* Client Request: 1.1-1.15 */
    color: #1F1F1F;
    margin-bottom: 24px;
    font-weight: 400;
    /* Regular */
    width: 100%;
    max-width: 100%;
    /* Full width */
    white-space: nowrap;
    /* Force 1 line */
}

.hero h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(18px, 2.5vw, 28px);
    /* Fluid: 18px to 28px */
    line-height: 1.4;
    color: #1F1F1F;
    margin-bottom: 24px;
    width: 100%;
    max-width: 66%;
    font-weight: 500;
    text-wrap: balance;
}

.hero .microcopy {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: clamp(14px, 1.5vw, 16px);
    /* Fluid: 14px to 16px */
    line-height: 1.6;
    color: #8A8A8A;
    width: 100%;
    max-width: 50%;
    margin: 0;
    font-weight: 400;
    text-wrap: balance;
}

/* Remove old hero box styles */
.hero-bg-img {
    display: none;
}



@media (max-width: 992px) {
    .hero {
        padding-top: 140px;
        /* Reduced from 300px */
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero .container {
        padding: 0 24px;
    }

    .hero-content {
        margin-left: 0;
        width: 100%;
        padding: 0;
    }

    .hero h1 {
        font-family: 'Canela', 'Playfair Display', serif;
        font-size: clamp(36px, 8vw, 48px);
        /* Fluid scaling for mobile */
        line-height: 1.25;
        margin-bottom: 24px;
        text-wrap: balance;
        max-width: 100%;
    }

    .hero h2 {
        font-family: 'Inter', sans-serif;
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 24px;
        width: 100%;
        max-width: 100%;
    }

    .hero .microcopy {
        font-size: 15px;
        max-width: 100%;
    }
}

/* --- INTERNAL HEROES --- */
.hero-solid {
    position: relative;
    overflow: hidden;
    background-color: #F5F5F3 !important;
    /* Match site background */
    color: #1F1F1F !important;
    /* Force dark text */
}

/* Background Image */
/* Background Image Removed */
/* Overlay Removed */

/* Ensure content sits above */
.hero-solid .container {
    position: relative;
    z-index: 2;
}

.hero-solid h1,
.hero-solid h2,
.hero-solid p,
.hero-solid span {
    color: #1F1F1F !important;
}

/* Internal Hero Overrides */
.hero-solid h1 {
    white-space: normal !important;
    /* Allow wrapping for internal titles */
    font-size: clamp(32px, 5vw, 56px) !important;
    /* Fluid sizing for internal H1 */
    text-wrap: balance;
    max-width: 100% !important;
}

.hero-solid h2 {
    font-size: clamp(18px, 3vw, 28px) !important;
    /* Fluid sizing for internal H2 */
    text-wrap: balance;
    opacity: 0.9;
    font-weight: 400 !important;
}

/* --- CARDS & BLOCKS --- */
.feature-block {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.text-overlap-card {
    background: #fff;
    padding: 40px;
    margin-top: -60px;
    margin-left: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 90%;
}

/* --- FOOTER MODERN --- */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 100px 0 40px;
    text-align: left;
}

footer h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

footer p {
    color: #888;
    font-size: 0.9rem;
}

footer a {
    color: #aaa;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

footer a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    color: #555;
    font-size: 0.8rem;
}

/* --- RESPONSIVE DESIGN --- */

/* Mobile Menu Toggle (Hidden on Desktop) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    /* Shadow for visibility on light BG */
}

header.scrolled .menu-toggle .bar,
header.header-solid .menu-toggle .bar {
    background-color: var(--text-main);
}

/* Tablet & Mobile Breakpoint (Increased to 992px for better coverage) */
@media (max-width: 992px) {

    /* 1. Header & Nav */
    .menu-toggle {
        display: flex !important;
        position: fixed;
        /* Anchor to VIEWPORT, not container */
        right: 20px;
        top: 20px;
        /* No transform needed for fixed top-right */
        z-index: 9999;
        /* Max z-index */
        background: rgba(255, 255, 255, 0.9);
        padding: 10px;
        border-radius: 8px;
        backdrop-filter: blur(5px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        /* Subtle shadow for depth */
    }

    .nav-wrapper {
        position: static;
        /* Remove relative positioning context from wrapper if needed, or keep it. Sticky header needs it? */
        /* Actually, header is fixed. Nav-wrapper is just a container. */
        justify-content: center;
        /* Center logo */
    }

    /* Force Dark Bars Always on Mobile for contrast against the little white box */
    .menu-toggle .bar {
        background-color: var(--text-main) !important;
        box-shadow: none;
        /* No shadow needed with box */
    }

    /* Hamburger Animation */
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--text-main);
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--text-main);
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #FDFDFB;
        /* Warm White */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-container.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 30px;
    }

    .nav-links a {
        color: var(--text-main) !important;
        /* Always dark in mobile menu */
        font-size: 1.2rem;
    }

    /* 2. Layout & Stacking */
    .row {
        flex-direction: column;
    }

    .container {
        padding: 0 20px !important;
    }

    /* 3. Typography */
    .logo {
        font-size: 2.5rem;
        /* Reduced from 3.5rem to fit better */
    }

    header.header-solid .logo {
        font-size: 2.2rem;
    }

    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .hero-box {
        padding: 20px;
    }

    /* 4. Fix Internal Page Spacing */
    .section-std[style*="margin-top: 160px"] {
        margin-top: 120px !important;
    }

    /* 5. Footer */
    footer .row {
        text-align: center;
        gap: 40px;
    }

    footer .col {
        min-width: 100%;
    }
}

/* --- SECTION QUESTIONS (PROBLEMA) --- */
.section-questions {
    background-color: #E6E2D8;
    padding: 120px 0 140px 0;
    /* Client Request: 120-140px space */
    text-align: left;
}

.section-questions .container {
    max-width: 100%;
    padding: 0 64px;
    margin: 0;
}

.questions-wrapper {
    width: 100%;
    max-width: unset;
    margin: 0;
    margin-left: 36px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.questions-title {
    font-family: 'Inter', sans-serif;
    /* Client Request: Inter */
    font-size: 28px;
    /* Client Request: 28px */
    font-weight: 500;
    /* Client Request: Medium */
    color: #1F1F1F;
    color: #1F1F1F;
    margin-bottom: 24px;
    text-transform: none;
    line-height: 1.4;
    /* Client Request: 1.4 */
    width: 100%;
    max-width: 58%;
    /* Approx 7/12 columns */
}

.questions-list {
    margin-bottom: 24px;
    padding-left: 0;
    list-style: none;
    width: 100%;
    max-width: 50%;
    /* Approx 6/12 columns */
}

.questions-list li {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    /* Client Request: 18px */
    color: #4A4A4A;
    /* Client Request: #4A4A4A */
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
    /* Client Request: 1.6 */
    font-weight: 400;
    /* Regular */
}

.questions-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4A4A4A;
    font-weight: bold;
}

.questions-intro {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    /* Client Request: 18px */
    font-weight: 400;
    /* Regular */
    line-height: 1.6;
    /* Client Request: 1.6 */
    color: #4A4A4A;
    /* Client Request: #4A4A4A */
    width: 100%;
    max-width: 50%;
    /* Approx 6/12 columns */
    margin: 0;
    font-weight: 400;
}

@media (max-width: 992px) {
    .section-questions {
        padding: 80px 0;
    }

    .section-questions .container {
        padding: 0 24px;
    }

    .questions-wrapper {
        margin-left: 0;
    }

    .questions-title,
    .questions-list,
    .questions-intro {
        max-width: 100%;
    }
}

/* --- SECTION DREAM (SUEÑA · DISEÑA · DESPLIEGA) --- */
.section-dream {
    background-color: #F5F5F3;
    padding-top: 140px;
    padding-bottom: 120px;
    /* Client Request: 120-140px top, 120px bottom */
    text-align: left;
}

.section-dream .container {
    max-width: 100%;
    padding: 0 64px;
    margin: 0;
}

.dream-header {
    font-family: 'Inter', sans-serif;
    /* Client Request: Inter */
    font-size: 28px;
    /* Client Request: 28px */
    font-weight: 500;
    /* Client Request: Medium */
    color: #1F1F1F;
    margin-bottom: 24px;
    margin-left: 36px;
    text-transform: none;
    line-height: 1.4;
    width: 100%;
    max-width: 58%;
    /* Approx 7 cols */
}

.dream-subtitle {
    font-family: 'Inter', sans-serif;
    /* Client Request: Match approach-subtitle (Inter) */
    font-size: 18px;
    /* Client Request: Match approach-subtitle (18px) */
    line-height: 1.6;
    /* Client Request: Match approach-subtitle (1.6) */
    color: #4A4A4A;
    /* Client Request: Match approach-subtitle (#4A4A4A) */
    margin-bottom: 48px;
    margin-left: 36px;
    width: 100%;
    max-width: 50%;
    /* Approx 6 cols */
    font-weight: 400;
    /* Regular */
}

.diagram-container {
    padding: 0;
    width: 66%;
    /* Approx 8 cols */
    max-width: unset;
    margin: 0;
    margin-left: calc(36px + 8.33%);
    /* Offset Left: 36px + 1 col (approx) */
    display: block;
    margin-bottom: 48px;
    /* Client Request: 48-64px from diagram to text */
}

.diagram-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Ensure image fits */
    border-radius: 4px;
    background-color: #fff;
    /* White background for lightening effect */
}

.diagram-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    /* Reset opacity if needed, or keep styles */
    transform: none;
    /* Reset scale if needed */
}

.dream-text-small {
    font-family: 'Inter', sans-serif;
    /* Client Request: Match approach-subtitle (Inter) */
    font-size: 18px;
    /* Client Request: Match approach-subtitle (18px) */
    font-weight: 400;
    /* Regular */
    line-height: 1.6;
    /* Client Request: Match approach-subtitle (1.6) */
    color: #4A4A4A;
    /* Client Request: Match approach-subtitle (#4A4A4A) */
    margin-top: 0;
    margin-bottom: 0px;
    /* Spacing to next section handled by section padding */
    margin-left: 36px;
    width: 100%;
    max-width: 50%;
    /* Approx 6 cols */
}

@media (max-width: 992px) {
    .section-dream {
        padding: 80px 0;
    }

    .section-dream .container {
        padding: 0 24px;
    }

    .dream-header,
    .dream-subtitle,
    .diagram-container,
    .dream-text-small {
        margin-left: 0;
        max-width: 100%;
        width: 100%;
    }

    .diagram-container {
        margin-left: 0;
    }

    .dream-header {
        font-size: 24px;
    }

    .dream-subtitle,
    .dream-text-small {
        font-size: 18px;
    }
}



/* --- SECTION APPROACH (MI ENFOQUE) --- */
.section-approach {
    background-color: #F5F5F3;
    padding-top: 120px;
    padding-bottom: 96px;
    /* Client Request: 96px space after */
    text-align: left;
}

.section-approach .container {
    max-width: 100%;
    margin: 0;
    padding: 0 64px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.approach-content {
    width: 100%;
    max-width: unset;
    /* Full width */
    align-self: flex-start;
    padding: 0;
    margin-left: 36px;
    /* Align with content */
}

.approach-header {
    font-family: 'Inter', sans-serif;
    /* Client: Inter */
    font-size: 28px;
    /* Client: 28px */
    font-weight: 500;
    /* Client: Medium */
    color: #1F1F1F;
    margin-bottom: 24px;
    margin-left: 36px;
    text-transform: none;
    line-height: 1.4;
}

.approach-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    /* Client: 18px */
    line-height: 1.6;
    /* Client: 1.6 */
    color: #4A4A4A;
    /* Client: #4A4A4A */
    margin-bottom: 60px;
    margin-left: 36px;
    width: 100%;
    max-width: 50%;
    /* approx 6 cols */
    font-weight: 400;
}

.approach-grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    /* Left align */
    width: 100%;
    margin-left: 0;
    gap: 0;
    /* Spacing handled by padding */
}

.approach-col {
    flex: 1;
    padding: 0 40px;
    max-width: 33.33%;
}

/* Center Column with Borders */
.approach-col-center {
    border-left: 1px solid #D1D1D1;
    border-right: 1px solid #D1D1D1;
}

/* First col padding adjustment */
.approach-grid .approach-col:first-child {
    padding-left: 0;
    padding-right: 40px;
}

/* Last col padding adjustment */
.approach-grid .approach-col:last-child {
    padding-left: 40px;
    padding-right: 0;
}

.approach-col p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    /* Client: 18px */
    line-height: 1.6;
    /* Client: 1.6 */
    color: #4A4A4A;
    /* Client: #4A4A4A */
    margin-bottom: 24px;
    text-align: left;
    /* Client: Left align, no center */
    font-weight: 400;
}

.approach-col p:last-child {
    margin-bottom: 0;
}

/* RESPONSIVE: Stack on smaller screens */
@media (max-width: 992px) {
    .section-approach .container {
        padding: 0 20px;
    }

    .approach-header,
    .approach-subtitle {
        margin-left: 0;
        max-width: 100%;
    }

    .approach-content {
        margin-left: 0;
    }

    .approach-grid {
        flex-direction: column;
        gap: 0;
    }

    .approach-col {
        padding: 0 !important;
        width: 100%;
        max-width: 100%;
    }

    .approach-col-center {
        border-left: none;
        border-right: none;
        border-top: 1px solid #D1D1D1;
        border-bottom: 1px solid #D1D1D1;
        padding-top: 48px !important;
        padding-bottom: 48px !important;
        margin-top: 48px;
        margin-bottom: 48px;
    }
}

/* First col padding adjustment */
.approach-grid .approach-col:first-child {
    padding-left: 0;
    padding-right: 40px;
}

/* Last col padding adjustment */
.approach-grid .approach-col:last-child {
    padding-left: 40px;
    padding-right: 0;
}

.approach-col-title {
    font-family: 'Canela', 'Playfair Display', serif;
    font-size: 24px;
    color: #1F1F1F;
    margin-bottom: 16px;
    font-weight: 400;
}

.approach-col p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    /* Reduced from 18px */
    line-height: 160%;
    color: #4A4A4A;
    margin-bottom: 24px;
    text-align: justify;
    /* Justified as requested */
}

.approach-col p:last-child {
    margin-bottom: 0;
}

/* RESPONSIVE: Stack on smaller screens */
@media (max-width: 992px) {
    .section-approach .container {
        padding: 0 20px;
        /* Reset padding for mobile/tablet */
    }

    .approach-grid {
        flex-direction: column;
        gap: 0;
        /* Let padding handle spacing */
    }

    .approach-col {
        padding: 0 !important;
        /* Reset horizontal padding */
        width: 100%;
    }

    .approach-col-center {
        border-left: none;
        border-right: none;
        border-top: 1px solid #D1D1D1;
        border-bottom: 1px solid #D1D1D1;
        padding-top: 48px !important;
        padding-bottom: 48px !important;
        margin-top: 48px;
        margin-bottom: 48px;
    }
}

/* Removed SECTION WORK AREAS (ÁREAS DE TRABAJO) */

/* --- FOOTER SITE --- */
.site-footer {
    background-color: #F5F5F3;
    padding-top: 96px;
    padding-bottom: 96px;
    color: #4A4A4A;
    text-align: left;
}

.site-footer .container {
    max-width: 1400px;
    /* Matched to CTA */
    margin: 0 auto;
    padding: 0 80px;
    /* Matched to CTA padding */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left aligned */
}

.footer-logo {
    display: block;
    line-height: 0;
    margin-bottom: 32px;
}

.footer-logo img {
    height: 70px;
    /* slightly larger for footer if needed */
    width: auto;
}

.footer-nav {
    display: flex;
    flex-direction: row;
    /* Horizontal on desktop */
    gap: 32px;
    flex-wrap: wrap;
    /* Safe wrapping */
    justify-content: flex-start;
    /* Left aligned */
}

.footer-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    /* Regular */
    color: #4A4A4A;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #9A8F7A;
    /* MOSS */
}

.footer-legal {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #8A8A8A;
    margin-top: 48px;
    /* Increased spacing */
    text-align: left;
    /* Left aligned */
}

.credits-link {
    color: #8A8A8A;
    text-decoration: none;
    font-weight: 500;
    margin-left: 5px;
    /* Spacing after "reservados." */
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.credits-link:hover {
    color: #9A8F7A;
    border-bottom-color: #9A8F7A;
}

@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        /* Vertical on mobile */
        gap: 16px;
        align-items: center;
    }
}

/* --- SECTION CTA FINAL --- */
.section-cta {
    background-color: #EDE9DC;
    /* Matching the beige tone from previous section if desired, or keep light grey #F5F5F3? User didn't specify bg color change, but usually consistent with flow. Let's keep it #EDE9DC as it follows Outcomes (which is F5F5F3). Let's stick to user previous request for "color de fondo de toda esta sección debe ir este #EDE9DC" referring to diagram? No, that was diagram section. Let's keep #EDE9DC for flow or go back to #F5F5F3. User said "con una imagen". I'll use #EDE9DC to make it look like a cohesive footer block or similar. Actually let's keep #EDE9DC to match the diagram section tone possibly? No, let's stick to the previous #F5F5F3 unless asked. Wait, diagram section is #EDE9DC. Approach is #F5F5F3. Work areas removed. Outcomes #F5F5F3. So CTA might look good with #EDE9DC for contrast. I'll use #EDE9DC. */
    background-color: #EDE9DC;
    padding-top: 200px;
    padding-bottom: 200px;
}

/* --- SECTION CTA FINAL --- */
.section-cta {
    background-color: #F5F5F3;
    padding-top: 200px;
    padding-bottom: 200px;
    text-align: left;
}

.section-cta .container {
    max-width: 100%;
    margin: 0;
    padding: 0 64px;
    /* Match Hero/Questions padding */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-grid {
    display: block;
    width: 100%;
    margin-left: 36px;
    /* Match content margin */
}

/* Removed cta-image-col and cta-img as requested */

.cta-text-col {
    width: 100%;
    text-align: left;
    display: block;
}

.cta-question {
    font-family: 'Canela', 'Playfair Display', serif;
    font-size: 33px;
    line-height: 125%;
    color: #1F1F1F;
    width: 100%;
    margin: 0 0 48px 0;
    font-weight: 400;
}

.btn-cta {
    display: inline-block;
    background-color: #FFFFFF;
    /* White background */
    color: #1F1F1F;
    /* Black text */
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.02em;
    text-transform: none;
    text-decoration: none;
    padding: 15px 30px;
    border: 1px solid #1F1F1F;
    /* Black outline */
    border-radius: 0;
    /* Square */
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #1F1F1F;
    /* Black background */
    color: #FFFFFF;
    /* White text */
}

@media (max-width: 992px) {
    .section-cta .container {
        padding: 0 24px;
    }

    .cta-grid {
        margin-left: 0;
    }
}

/* --- SECTION OUTCOMES (LO QUE CAMBIA) --- */
.section-outcomes {
    background-color: #F5F5F3;
    padding-top: 0;
    padding-bottom: 140px;
    /* Client: 120-140px to CTA */
    text-align: left;
}

.section-outcomes .container {
    max-width: 100%;
    margin: 0;
    padding: 0 64px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
}

.outcomes-title {
    font-family: 'Inter', sans-serif;
    /* Client: Inter */
    font-size: 28px;
    /* Client: 28px */
    font-weight: 500;
    /* Client: Medium */
    color: #1F1F1F;
    margin-bottom: 48px;
    margin-left: 36px;
    text-transform: none;
    text-align: left;
    width: 100%;
    max-width: 58%;
    /* approx 7 cols */
    line-height: 1.4;
}

.outcomes-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    margin-left: 36px;
}

.outcome-text {
    font-family: 'Inter', sans-serif;
    text-align: left;
    margin: 0;
    padding: 0;
}

/* Alternating Styles logic will be applied via specific classes or pairs in HTML */
.outcome-bold {
    font-weight: 500;
    /* Client: Medium/Semibold */
    font-size: 20px;
    /* Client: 20px */
    line-height: 1.5;
    /* Client: 1.5 */
    color: #4A4A4A;
    /* Client: #4A4A4A */
    margin-top: 16px;
    width: 100%;
    max-width: 42%;
    /* Approx 5 cols */
}

.outcome-bold:first-child {
    margin-top: 0;
}

.outcome-light {
    font-weight: 400;
    /* Client: Regular */
    font-size: 18px;
    /* Client: 18px */
    line-height: 1.6;
    /* Client: 1.6 */
    color: #4A4A4A;
    /* Client: #4A4A4A */
    margin-bottom: 8px;
    width: 100%;
    max-width: 60%;
    /* Give it some room, or match above? Client didn't specify text width, just text style. */
}

@media (max-width: 992px) {
    .section-outcomes .container {
        padding: 0 24px;
    }

    .outcomes-title,
    .outcomes-list {
        margin-left: 0;
        width: 100%;
    }

    .outcome-bold,
    .outcome-light {
        width: 100%;
        max-width: 100%;
    }
}

/* --- SECTION CTA FINAL --- */
.section-cta {
    background-color: #F5F5F3;
    padding-top: 0px;
    /* Flow from previous */
    padding-bottom: 160px;
    /* Client: Spacing to footer 160px */
    text-align: left;
}

.section-cta .container {
    max-width: 100%;
    margin: 0;
    padding: 0 64px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-grid {
    display: block;
    width: 100%;
    margin-left: 36px;
}

.cta-text-col {
    width: 100%;
    text-align: left;
    display: block;
}

.cta-question {
    font-family: 'Canela', 'Playfair Display', serif;
    font-size: 33px;
    /* Client didn't ask to change font size here, just alignment/width/spacing. Keeping Canela 33 or check? Client: "Alineado a la izquierda, Ancho 6-7 cols". */
    line-height: 125%;
    color: #1F1F1F;
    width: 100%;
    max-width: 58%;
    /* Approx 6-7 cols */
    margin: 0 0 32px 0;
    /* Client: Spacing to button 24-32px */
    font-weight: 400;
}

.btn-cta {
    display: inline-block;
    background-color: #FFFFFF;
    color: #1F1F1F;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.02em;
    text-transform: none;
    text-decoration: none;
    padding: 15px 30px;
    border: 1px solid #1F1F1F;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #1F1F1F;
    color: #FFFFFF;
}

@media (max-width: 992px) {
    .section-cta .container {
        padding: 0 24px;
    }

    .cta-grid {
        margin-left: 0;
    }

    .cta-question {
        width: 100%;
        font-size: 24px;
    }
}