html,
body {
    height: 100%;
    margin: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    color: #1f1f1f;
    background: #f8f8f8;
}

:root {
    --verde-pukaray: #41b359;
    --verde-pukaray-dark: #2f9446;
    --verde-pukaray-hover: #34954a;
    --rojo-pukaray: #7c180d;
    --rojo-pukaray-dark: #b11c1f;
    --naranjo-pukaray: #f05a22;
    --naranjo-pukaray-hover: #db4f1d;
    --blanco: #ffffff;
    --texto: #1f1f1f;
    --texto-suave: #4d4d4d;
    --gris-fondo: #f5f5f2;
    --gris-claro: #ecece7;
    --gris-borde: #d9d9d9;
    --sombra-suave: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radio-xl: 28px;
    --radio-lg: 22px;
    --radio-md: 16px;
    --container-width: min(92%, 1440px);
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

.site-main {
    flex: 1;
    width: 100%;
    background: var(--gris-fondo);
    margin-top: 0;
    padding-top: 0;
}

/* BASE GENERAL */
.home-section {
    padding: 60px 0;
}

.home-section:first-of-type {
    padding-top: 0;
}

.section-heading {
    margin-bottom: 36px;
}

.section-heading.center {
    text-align: center;
}

.title-green,
.title-orange {
    margin: 0 0 22px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.title-green {
    color: var(--verde-pukaray);
}

.title-orange {
    color: var(--naranjo-pukaray);
}

.subtitle-strong {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    color: #111111;
}

.split-content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.text-block p {
    margin: 0 0 22px;
    color: var(--texto);
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 760px;
}

.text-block p:last-child {
    margin-bottom: 0;
}

.media-block {
    width: 100%;
}

.reverse-mobile {
    direction: ltr;
}

/* VIDEO PLACEHOLDERS */
.video-placeholder {
    position: relative;
    width: 100%;
    min-height: 360px;
    border-radius: var(--radio-xl);
    background:
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
        linear-gradient(135deg, #d9d9d9 0%, #c9c9c9 100%);
    box-shadow: var(--sombra-suave);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 58%);
}

.video-thumb {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.play-button {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
    border: 4px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.play-button::before {
    content: "";
    margin-left: 6px;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 24px solid rgba(255, 255, 255, 0.95);
}

/* BOTONES */
.solid-btn,
.outline-btn,
.tour-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 1.06rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.solid-btn:hover,
.outline-btn:hover,
.tour-btn:hover {
    transform: translateY(-2px);
}

.solid-btn-green {
    background: var(--verde-pukaray);
    color: var(--blanco);
    box-shadow: 0 10px 24px rgba(65, 179, 89, 0.22);
}

.solid-btn-green:hover {
    background: var(--verde-pukaray-hover);
}

.solid-btn-orange {
    background: var(--naranjo-pukaray);
    color: var(--blanco);
    box-shadow: 0 10px 24px rgba(240, 90, 34, 0.22);
}

.solid-btn-orange:hover {
    background: var(--naranjo-pukaray-hover);
}

.outline-btn-green {
    border: 2px solid var(--verde-pukaray);
    color: var(--verde-pukaray);
    background: transparent;
}

.outline-btn-green:hover {
    background: var(--verde-pukaray);
    color: var(--blanco);
}

/* RESPONSIVE BASE */
@media (max-width: 1200px) {
    .split-content {
        gap: 38px;
    }
}

@media (max-width: 992px) {
    .home-section {
        padding: 58px 0;
    }

    .split-content {
        grid-template-columns: 1fr;
    }

    .reverse-mobile {
        direction: ltr;
    }

    .video-placeholder {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .title-green,
    .title-orange {
        margin-bottom: 18px;
    }

    .text-block p {
        font-size: 1rem;
    }

    .video-placeholder {
        min-height: 250px;
    }

    .play-button {
        width: 82px;
        height: 82px;
    }

    .play-button::before {
        border-top-width: 14px;
        border-bottom-width: 14px;
        border-left-width: 20px;
    }
}

@media (max-width: 576px) {
    .home-section {
        padding: 48px 0;
    }

    .video-placeholder {
        min-height: 220px;
        border-radius: 20px;
    }

    .solid-btn,
    .outline-btn,
    .tour-btn {
        width: 100%;
    }

    .section-heading {
        margin-bottom: 28px;
    }
}