:root {
    --bg: #edf4f2;
    --w: #fff;
    --ink: #12262d;
    --mute: #5b6b70;
    --l: #d8e2df;
    --g: #0f7c5f;
    --g2: #27ae89;
    --d: #081a27;
    --r: 16px;
    --s: 0 16px 35px rgba(16, 34, 39, 0.12);
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at 0 0, rgba(39, 174, 137, 0.14), transparent 35%), linear-gradient(180deg, #f8fbfa, var(--bg));
    overflow-x: clip;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

p {
    line-height: 1.7;
    color: var(--mute);
}

.container {
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 34px;
}

.ey {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--g);
    background: rgba(39, 174, 137, 0.14);
    border: 1px solid rgba(39, 174, 137, 0.25);
    margin-bottom: 12px;
}

.head h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 4vw, 42px);
    margin-bottom: 10px;
}

.top {
    background: #081925;
    color: #d7e6e8;
    font-size: 13px;
}

.top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.top .left,
.top .right {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.top i {
    color: #3bd2a2;
    margin-right: 6px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8, 26, 39, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px;
}

.brand strong {
    display: block;
    color: #edf5f7;
    font-size: 15px;
}

.brand span {
    display: block;
    color: #c4d5d8;
    font-size: 12px;
}

.links {
    display: flex;
    gap: 20px;
}

.links a {
    color: #d8e6e9;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    padding: 8px 0;
}

.links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--g), var(--g2));
    transition: 0.25s;
}

.links a:hover::after,
.links a.active::after {
    width: 100%;
}

.links a.active,
.links a:hover {
    color: #fff;
}

.actions {
    display: flex;
    gap: 10px;
}

.pill {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 13px;
    color: #eef5f7;
    font-weight: 700;
}

.pill.p {
    border: none;
    background: linear-gradient(135deg, var(--g), var(--g2));
    box-shadow: 0 10px 20px rgba(39, 174, 137, 0.25);
}

.m-btn {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #fff;
}

.ov {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
    z-index: 60;
}

.ov.show {
    opacity: 1;
    visibility: visible;
}

.mm {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 88vw);
    height: 100vh;
    background: #102633;
    z-index: 70;
    padding: 18px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    box-shadow: none;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s ease;
}

.mm.show {
    transform: translateX(0);
    box-shadow: -18px 0 34px rgba(0, 0, 0, 0.36);
    visibility: visible;
    pointer-events: auto;
}

.mm-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    margin-bottom: 4px;
}

.c-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
}

.mm > a {
    padding: 10px 12px;
    border-radius: 10px;
    color: #d4e3e6;
    font-weight: 600;
}

.mm > a:hover,
.mm > a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.mm-actions {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    gap: 2px;
}

.mm-actions .btn {
    display: block;
    width: 100%;
    margin: 0;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    line-height: 1.2;
    color: #d4e3e6;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.mm-actions .btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.hero {
    min-height: 74vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: url('../images/serviciosslide.png') center/cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(95deg, rgba(8, 20, 33, 0.86), rgba(10, 34, 45, 0.64));
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.8s ease, transform 6.8s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-grid {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 24px;
    align-items: center;
    padding: 70px 0;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 6vw, 60px);
    color: #fff;
    margin: 14px 0;
}

.hero p {
    color: #ddeaec;
    font-size: 17px;
}

.ha {
    margin-top: 22px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
}

.btn.g {
    background: linear-gradient(135deg, var(--g), var(--g2));
    color: #fff;
    box-shadow: 0 12px 24px rgba(39, 174, 137, 0.28);
}

.btn.o {
    color: #ecf5f7;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.h-card {
    padding: 22px;
    border-radius: var(--r);
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--s);
}

.h-card h3 {
    color: #fff;
    margin-bottom: 12px;
}

.h-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.h-list li {
    display: flex;
    gap: 10px;
    color: #d8e6e8;
    font-size: 14px;
}

.h-list i {
    color: #42d9aa;
    margin-top: 2px;
}

.hero-nav {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(8, 26, 39, 0.52);
    backdrop-filter: blur(5px);
    padding: 7px 10px;
}

.hero-btn {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #ecf5f7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

.hero-btn:hover {
    background: rgba(39, 174, 137, 0.3);
    border-color: rgba(39, 174, 137, 0.65);
}

.hero-dots {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: 0.25s;
}

.hero-dot.is-active {
    width: 22px;
    background: linear-gradient(90deg, var(--g), var(--g2));
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.card {
    background: var(--w);
    border: 1px solid var(--l);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--s);
    display: flex;
    flex-direction: column;
}

.cm {
    height: 190px;
    position: relative;
}

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

.tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(8, 26, 39, 0.86);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    padding: 6px 10px;
}

.cb {
    padding: 16px;
    display: grid;
    gap: 10px;
    flex-grow: 1;
}

.cb h3 {
    font-size: 20px;
}

.cb p {
    font-size: 14px;
}

.cb .btn {
    margin-top: auto;
    width: max-content;
}

.stats {
    background: linear-gradient(130deg, rgba(8, 20, 33, 0.9), rgba(10, 34, 45, 0.88)), url('../images/logo  de persona en naturaleza.png') center/cover no-repeat;
    color: #ecf5f7;
}

.stats p {
    color: #d6e8ea;
}

.m {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 26px;
}

.mi {
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.n {
    font-size: 34px;
    font-weight: 800;
    color: #4be0b4;
}

.l {
    font-size: 14px;
    color: #dcecee;
}

.features {
    background: #f0f4f5;
}

.feature-head h2 {
    text-transform: uppercase;
    font-size: clamp(32px, 4.3vw, 52px);
    line-height: 1.1;
}

.feature-layout {
    display: grid;
    grid-template-columns: 1fr minmax(360px, 430px) 1fr;
    gap: 30px;
    align-items: start;
}

.feature-side {
    display: grid;
    gap: 28px;
    align-content: start;
}

.feature-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: start;
}

.feature-ico {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #26a949, #228f3d);
    color: #fff;
    font-size: 23px;
    box-shadow: 0 10px 18px rgba(18, 75, 36, 0.25);
}

.feature-copy h3 {
    font-size: clamp(20px, 1.6vw, 26px);
    line-height: 1.2;
    margin-bottom: 8px;
}

.feature-copy p {
    font-size: clamp(15px, 1.06vw, 18px);
}

.feature-center {
    border-radius: 12px;
    background: #fff;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--s);
    border: 1px solid var(--l);
}

.feature-center img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.media {
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--s);
}

.media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.panel {
    padding: 22px;
    border: 1px solid var(--l);
    border-radius: var(--r);
    background: #fff;
    box-shadow: var(--s);
}

.tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 14px 0;
}

.tab {
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid var(--l);
    background: #f7fbfa;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.tab.active {
    background: linear-gradient(140deg, var(--g), var(--g2));
    color: #fff;
    border-color: transparent;
}

.pane {
    display: none;
}

.pane.active {
    display: block;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.news-card {
    border: 1px solid var(--l);
    border-radius: var(--r);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--s);
    display: flex;
    flex-direction: column;
}

.news-media {
    position: relative;
    height: 210px;
}

.news-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.date {
    position: absolute;
    left: 12px;
    top: 12px;
    width: 52px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.date b {
    display: block;
    background: #fff;
    color: #102633;
    font-size: 20px;
    padding: 5px 0 2px;
}

.date span {
    display: block;
    background: var(--g);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.05em;
    padding: 3px 0 5px;
}

.news-body {
    padding: 16px;
    display: grid;
    gap: 10px;
    flex-grow: 1;
}

.news-body h3 {
    font-size: 20px;
}

.news-body p {
    font-size: 14px;
}

.news-link {
    margin-top: auto;
    color: var(--g);
    font-weight: 700;
}

.faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
}

.faq-col {
    display: grid;
    gap: 12px;
    align-content: start;
}

.fi {
    border: 1px solid var(--l);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.q {
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border: 0;
    background: #fff;
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.q i {
    color: var(--g);
    transition: 0.25s;
}

.fi.active .q i {
    transform: rotate(180deg);
}

.fi .a {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height 0.25s, padding 0.25s;
}

.fi.active .a {
    max-height: 460px;
    padding: 0 15px 14px;
}

.cta {
    margin-top: 58px;
    padding: 24px;
    border-radius: var(--r);
    background: linear-gradient(130deg, #0b2130, #11443a);
    color: #eaf4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.cta h3 {
    font-family: "Playfair Display", serif;
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 6px;
}

.cta p {
    color: #d6e8ea;
}

.footer {
    margin-top: 80px;
    background: #081a27;
    color: #d4e1e6;
    padding: 54px 0 22px;
}

.fg {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer h4 {
    color: #fff;
    margin-bottom: 8px;
}

.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.soc {
    display: flex;
    gap: 10px;
}

.soc a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    font-size: 14px;
}

.wa,
.tp {
    position: fixed;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(9, 35, 31, 0.34);
}

.wa {
    left: 18px;
    bottom: 18px;
    background: linear-gradient(135deg, #0a8f68, #2dcf9d);
}

.tp {
    right: 18px;
    bottom: 18px;
    background: linear-gradient(135deg, #0e2e45, #12617c);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
}

.tp.show {
    opacity: 1;
    visibility: visible;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: 0.45s;
}

.reveal.show {
    opacity: 1;
    transform: none;
}

@media (max-width: 1080px) {
    .cards,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

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

@media (max-width: 1120px) {
    .links {
        gap: 14px;
    }

    .links a {
        font-size: 13px;
    }

    .actions {
        gap: 8px;
    }

    .pill {
        padding: 9px 12px;
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .top .left span:nth-child(2),
    .top .left span:nth-child(3),
    .links,
    .actions {
        display: none;
    }

    .m-btn {
        display: block;
    }

    .hero-grid,
    .split,
    .faq {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        padding: 56px 0;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 68px 0;
    }

    .cards,
    .m,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .feature-copy h3 {
        font-size: clamp(20px, 6vw, 24px);
    }

    .feature-copy p {
        font-size: clamp(14px, 4.4vw, 16px);
    }

    .feature-center img {
        height: 320px;
    }

    .hero-nav {
        bottom: 12px;
        padding: 6px 8px;
        gap: 8px;
    }

    .hero-btn {
        width: 28px;
        height: 28px;
    }

    .top .right {
        display: none;
    }

    .brand span {
        display: none;
    }

    .cta,
    .bot {
        flex-direction: column;
        align-items: flex-start;
    }

    .bot {
        padding-bottom: calc(64px + env(safe-area-inset-bottom));
    }

    .wa span,
    .tp span {
        display: none;
    }

    .wa,
    .tp {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
        box-shadow: 0 5px 12px rgba(9, 35, 31, 0.2);
    }

    .wa {
        left: calc(32px + env(safe-area-inset-left));
        bottom: calc(12px + env(safe-area-inset-bottom));
    }

    .tp {
        right: calc(32px + env(safe-area-inset-right));
        bottom: calc(12px + env(safe-area-inset-bottom));
    }
}
