.landing-page {
    background-color: #000000;
    width: 100%;
    min-width: 1440px;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.landing-page .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    border-radius: 8px;
    opacity: 0.81;
    background-image: 
        linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%),
        url(https://www.nasa.gov/wp-content/uploads/2026/04/art002e012588orig.jpg);
    background-size: cover;
    background-position: 50% 0%;
}

.landing-page .navigation {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 18%;
    display: flex;
    justify-content: space-between;
    background-color: #000000;
    border: 1px solid;
    box-shadow: 0px 4px 4px #00000040;
}

.landing-page .text-wrapper {
    display: flex;
    align-items: center;
    margin-top: 55px;
    width: 152px;
    height: 54px;
    margin-left: 80px;
    font-family: "Clash Display", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 36px;
    letter-spacing: 0;
    line-height: 54px;
    white-space: nowrap;
}

.landing-page .items {
    display: inline-flex;
    margin-top: 56px;
    width: 506px;
    height: 58px;
    position: relative;
    margin-right: 80px;
    align-items: center;
    justify-content: flex-end;
    gap: 48px;
    box-shadow: 0px 4px 4px #00000040;
}

.landing-page .div {
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    font-family: var(--body-text-font-family);
    font-weight: var(--body-text-font-weight);
    color: #ffffff;
    font-size: var(--body-text-font-size);
    letter-spacing: var(--body-text-letter-spacing);
    line-height: var(--body-text-line-height);
    white-space: nowrap;
    font-style: var(--body-text-font-style);

}

.landing-page .button {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    position: relative;
    flex: 0 0 auto;
    background-color: #3142A3;
    border-radius: 8px;
    box-shadow: var(--button-shadow);
}

/* Hover para el botón de Inicio - agranda suavemente */
.landing-page .button {
    transition: transform 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
}

.landing-page .button:hover {
    transform: scale(1.05);
    background-color: #3f52c4;
}

/* Efecto de línea deslizante para elementos de navegación */
.landing-page .div {
    position: relative;
    cursor: pointer;
    padding-bottom: 4px;
}

.landing-page .div::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.landing-page .div:hover::after {
    width: 100%;
}

.landing-page .text-wrapper-2 {
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    margin-top: -1px;
    font-family: var(--botones-font-family);
    font-weight: var(--botones-font-weight);
    color: #ffffff;
    font-size: var(--botones-font-size);
    letter-spacing: var(--botones-letter-spacing);
    line-height: var(--botones-line-height);
    white-space: nowrap;
    font-style: var(--botones-font-style);
}

.landing-page .copy {
    display: flex;
    flex-direction: column;
    width: 844px;
    align-items: flex-start;
    gap: 40px;
    position: absolute;
    top: 447px;
    left: calc(50.00% - 422px);
}

.landing-page .page-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.landing-page .text-wrapper-3 {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: "Clash Display", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 64px;
    text-align: center;
    letter-spacing: -1.28px;
    line-height: normal;
}

.landing-page .p {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    font-family: "Encode Sans Expanded", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 24px;
    text-align: center;
    letter-spacing: 0;
    line-height: 36px;
}
