@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@import url("https://unpkg.com/boxicons@latest/css/boxicons.min.css");

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
}

html {
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        "Segoe UI",
        sans-serif;
    font-size: 16px;
    font-weight: 400;
    height: -webkit-fill-available;
    color: #6b7280;
    background-color: #ffffff;
}

body.overflow-hidden {
    overflow: hidden;
}

main {
    overflow: hidden;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
    text-decoration: none;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.Normal-title,
.Normal-subtitle {
    font-family: "Bentham", serif;
}

.container {
    max-width: 1462px;
    height: auto;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================
    HERO
    =========================== */
.Normal-hero-section {
    position: relative;
    padding-bottom: 140px;
    overflow: hidden;
    max-height: 100vh;
}

/*     .Normal-hero-section::before {
        content: "";
        position: absolute;
        left: 0%;
        top: 0%;
        right: 0%;
        bottom: 0%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            -33.26deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.85) 100%
        );
        z-index: 1;
    }

    .Normal-hero-section::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 550px;
        z-index: 5;
        background-image: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.9)
        );
    }
 */
.Normal-hero-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
}

.Normal-hero-image-wrapper img {
    width: 100%;
    height: auto;
}

.Normal-hero-image-wrapper img.sky {
    margin-top: 0%;
    position: relative;
    transform: translateY(-50%);
    height: 100vh;
    object-fit: cover;
}

.Normal-hero-image-wrapper img.mountains {
    margin-top: -170%;
    z-index: 1;
    height: 100vh;
    object-fit: cover;
}

.Normal-hero-image-wrapper img.man-standing {
    margin-top: -150%;
    z-index: 4;
    height: 330px;
    object-fit: cover;
}

.Normal-hero-content {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    z-index: 6;
    height: auto;
    width: 100%;
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 24px;
}

.Normal-hero-subtitle {
    font-size: 12px;
    color: #b8860b;
    font-weight: bold;
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        "Segoe UI",
        sans-serif;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
}

.Normal-hero-subtitle::before {
    content: "";
    height: 2px;
    width: 40px;
    background-color: #b8860b;
    display: inline-block;
}

.Normal-hero-title {
    font-size: 40px;
    line-height: 40px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 32px;
}

.Normal-hero-title span {
    display: inline-block;
}

.Normal-hero-action {
    font-size: 18px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: #374151;
}

.Normal-hero-action:hover {
    color: #b8860b;
}

.Normal-hero-action svg {
    animation: scroll-down-arrow 2.5s infinite;
}

@keyframes scroll-down-arrow {
    0%,
    20%,
    55%,
    80%,
    100% {
        transform: translate3d(-50%, 0, 0);
    }

    40% {
        transform: translate3d(-50%, -15px, 0);
    }

    70% {
        transform: translate3d(-50%, -10px, 0);
    }

    90% {
        transform: translate3d(-50%, -5px, 0);
    }
}

/* ===========================
    CONTENT
    =========================== */
.Normal-content-section {
    position: relative;
    z-index: 5;
    margin-top: -50%;
    background-color: #ffffff;
}

.Normal-content-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.Normal-content-wrapper:not(:last-child) {
    margin-bottom: 80px;
}

.Normal-content-wrapper .Normal-content-image {
    width: 100%;
}

.Normal-content-image img {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.Normal-content-content {
    flex: 1;
    padding-left: 0px;
}

.Normal-content-subtitle {
    font-size: 14px;
    color: #b8860b;
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        "Segoe UI",
        sans-serif;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    position: relative;
    transition: all 0.4s ease-in-out;
}

.Normal-content-subtitle::before {
    content: "";
    height: 2px;
    width: 40px;
    background-color: #b8860b;
    display: inline-block;
}

.Normal-content-title {
    font-size: 34px;
    color: #374151;
    margin-bottom: 27px;
    font-weight: 500;
}

.Normal-content-title span {
    display: inline-block;
    transition: all 0.4s ease-in-out;
}

.Normal-content-copy {
    font-size: 14px;
    color: #6b7280;
    line-height: 32px;
    margin-bottom: 27px;
    transition: all 0.4s ease-in-out;
}

.Normal-content-action {
    color: #b8860b;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    transition: all 0.4s ease-in-out;
}

.Normal-content-action:hover {
    gap: 20px;
    color: #d4a017;
}

.Normal-content-subtitle .counter {
    font-size: 140px;
    font-weight: bold;
    color: rgba(107, 114, 128, 0.1);
    position: absolute;
    left: 0%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
    letter-spacing: 0;
}

/* ===========================
    SLIDER
    =========================== */
.Normal-slider {
    position: fixed;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    z-index: 9;
}

.Normal-slider .container {
    padding: 0;
    display: flex;
    gap: 32px;
    justify-content: flex-end;
    max-width: 1500px;
}

.Normal-slider-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 15px 0;
}

.Normal-slider-list-item a {
    color: #6b7280;
    font-weight: bold;
    transition: all 0.3s ease;
}

.Normal-slider-list-item a:hover {
    color: #b8860b;
}

.Normal-slider-progress {
    height: auto;
    width: 4px;
    background-color: rgba(107, 114, 128, 0.2);
}

.Normal-slider-progress-bar {
    width: 100%;
    height: 100%;
    background-color: #b8860b;
}
/* ===========================
   HERO LOGO - CENTRADO Y GRANDE
   =========================== */
.Normal-hero-title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-logo {
    width: 100%;
    max-width: 800px; /* Tamaño grande para desktop */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

/* Ajustes responsivos */
@media (max-width: 1400px) {
    .hero-logo {
        max-width: 700px;
    }
}

@media (max-width: 1200px) {
    .hero-logo {
        max-width: 600px;
    }
}

@media (max-width: 992px) {
    .hero-logo {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .hero-logo {
        max-width: 300px;
    }
}

@media (max-width: 400px) {
    .hero-logo {
        max-width: 250px;
    }
}