@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Playfair+Display:ital,wght@0,500;1,500;1,600&display=swap');

:root {
    --green: #183d32;
    --dark-green: #102d26;
    --cream: #f4f0e7;
    --sand: #ddd2bc;
    --orange: #c87945;
    --text: #26362f;
    --white: #fffdf8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
}

.navbar {
    align-items: center;
    background: var(--green);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    padding: 22px 6vw;
}

.logo,
footer a {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
}

.logo span,
footer a:first-letter {
    color: var(--orange);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    font-size: .9rem;
    text-decoration: none;
}

.nav-cta,
.button {
    border: 1px solid currentColor;
    color: var(--white);
    display: inline-block;
    padding: 12px 20px;
    text-decoration: none;
}

.hero {
    align-items: flex-end;
    background:
        linear-gradient(90deg, rgba(16, 45, 38, .94), rgba(24, 61, 50, .55)),
        radial-gradient(circle at 75% 30%, #9d9474, #315448 48%, #16372e);
    color: var(--white);
    display: flex;
    min-height: 650px;
    padding: 100px 10vw 75px;
    position: relative;
}

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

.eyebrow {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    margin-bottom: 22px;
}

h1,
h2 {
    font-weight: 500;
    line-height: 1.05;
}

h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
}

h2 {
    color: var(--green);
    font-size: clamp(2.5rem, 5vw, 4.6rem);
}

em {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.hero-text {
    font-size: 1.1rem;
    margin: 30px 0;
    max-width: 520px;
}

.button {
    background: var(--orange);
    border: 0;
    color: var(--white);
    font-weight: 700;
}

.hero-label {
    bottom: 42px;
    position: absolute;
    right: 10vw;
}

.hero-label span,
.number {
    color: var(--orange);
    margin-right: 12px;
}

.section {
    padding: 110px 10vw;
}

.intro {
    display: grid;
    gap: 70px;
    grid-template-columns: 1fr 1fr;
}

.intro-text {
    max-width: 470px;
    padding-top: 45px;
}

.stat {
    border-left: 3px solid var(--orange);
    display: flex;
    flex-direction: column;
    margin-top: 35px;
    padding-left: 18px;
}

.stat strong {
    color: var(--green);
    font-size: 2rem;
}

.solutions {
    background: var(--sand);
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 120px;
    padding-top: 0;
}

.solution-card {
    background: var(--white);
    min-height: 340px;
    padding: 35px;
}

.solution-card.featured {
    background: var(--green);
    color: var(--white);
    transform: translateY(-35px);
}

.solution-card h3 {
    font-size: 1.35rem;
    margin: 25px 0 12px;
}

.symbol {
    color: var(--orange);
    font-size: 3rem;
    margin-top: 28px;
}

.process {
    align-items: center;
    display: grid;
    gap: 80px;
    grid-template-columns: 1fr 1fr;
}

.process-image {
    background:
        linear-gradient(rgba(24, 61, 50, .15), rgba(24, 61, 50, .35)),
        radial-gradient(circle at 52% 35%, #b8a978 0 8%, transparent 9%),
        linear-gradient(135deg, #718b6e, #d5c59a 55%, #54705e);
    min-height: 500px;
}

.process-content p:not(.eyebrow) {
    margin: 25px 0;
    max-width: 530px;
}

.process ul {
    list-style: none;
}

.process li {
    margin: 13px 0;
}

.process li span {
    color: var(--orange);
    font-weight: 700;
    margin-right: 12px;
}

.contact {
    background: var(--green);
    color: var(--white);
    text-align: center;
}

.contact h2 {
    color: var(--white);
}

.contact > p:not(.eyebrow) {
    margin: 25px auto;
}

.dark-button {
    background: var(--orange);
}

footer {
    align-items: center;
    background: var(--dark-green);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    padding: 28px 10vw;
}

/* Diseño adaptable */
@media (max-width: 760px) {
    .navbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 14px 20px;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        min-height: 590px;
        padding: 80px 7vw 65px;
    }

    .hero-label {
        bottom: 25px;
        left: 7vw;
        right: auto;
    }

    .section {
        padding: 75px 7vw;
    }

    .intro,
    .process {
        gap: 35px;
        grid-template-columns: 1fr;
    }

    .intro-text {
        padding-top: 0;
    }

    .solutions {
        grid-template-columns: 1fr;
        padding-top: 0;
    }

    .solution-card.featured {
        transform: none;
    }

    .process-image {
        min-height: 330px;
    }

    footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}