@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Next:ital,wght@0,200..800;1,200..800&display=swap');

* {
    font-family: 'Atkinson Hyperlegible Next', serif;
    font-style: swap;
}

main {
    padding-bottom: 90px;
}

body {
    background-color: #DDDDDD;
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    display: none;
}

.cursor {
    position: absolute;
    width: 350px;
    height: 350px;
    background: url('../img/MOUSEOVER-HOUSE.gif') no-repeat center;
    background-size: contain;
    pointer-events: none;
    display: none; /* Oculto por defecto */
    z-index: 1000;
}

.container-fluid {
    width: calc(100vw - 1.25rem * 2);
    max-width: 1980px;
    margin: 0 auto;
}

.navbar {
    position: sticky;
    top: 0;
    background-color: #DDDDDD;
    z-index: 1;
}

.navbar .navbar-brand img {
    width: 110px;
}

.navbar .navbar-nav {
    gap: 12px;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

.navbar .navbar-nav .nav-item.nav-item-separator {
    font-size: 24px;
}

.navbar .navbar-nav .nav-item .nav-link {
    font-size: 20px;
    line-height: 125%;
    padding: 0;
}

.section-header {
    padding-top: 90px;
    padding-bottom: 135px;
}

.section-header .title-header {
    font-size: 88px;
    line-height: 100%;
    font-weight: 400;
    max-width: 1300px;
}

.section-header .title-header u {
    position: relative;
    text-decoration: none;
    cursor: none;
}

.section-header .title-header u .underline {
    position: absolute;
    left: 0;
    bottom: 15%;
    width: 100%;
    height: 30%;
    transform-origin: left;
    transform: scaleX(0);
    z-index: -1;
}

.section-header .title-header u.orange .underline {
    background-color: #FF5533;
}

.section-header .title-header u.rose .underline {
    background-color: #ED335C;
}

.section-gallery {
    padding: 90px 0;
    overflow-x: hidden;
}

.section-gallery .container-gallery {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.section-gallery .container-gallery .image {
    min-width: 25vw;
}

.section-gallery .container-gallery .image img {
    width: 100%;
    height: auto;
}

.section-gallery .container-gallery .image:not(:last-child){
    margin-right: 5vw;
}

.section-gallery .container-gallery .image:nth-child(odd) {
    position: relative;
    margin-top: 10%;
}

.section-description {
    padding: 90px 0;
}

.section-description .text-description {
    font-size: 80px;
    line-height: 100%;
    font-weight: 400;
    max-width: 1300px;
}

.section-options {
    padding: 90px 0 130px 0;
}

.section-options .container-options {
    margin: 0 auto;
    max-width: 1120px;
}

.section-options .container-options p {
    font-size: 120px;
    font-weight: 500;
    line-height: 125%;
    margin: 0;
    padding: 0;
    transition: transform 0.3s ease-in-out;
    display: inline-block; /* Para que el transform funcione correctamente */
    cursor: default;
}

.section-options .container-options p:hover {
    transform: scale(1.1) !important;
}

.section-options .container-options .item {
    position: relative;
}

.section-options .container-options .item .custom-border {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: rgb(199, 199, 199);
    transform-origin: center center;
    transform: scaleX(0);
}

.section-options .container-options .item .b-top{
    top: 0;
    left: 0;
}

.section-options .container-options .item:last-child .b-bottom {
    bottom: 0;
    left: 0;
}

.section-options .container-options .item:first-child {
    padding-left: 0;
}

.section-options .container-options .item:nth-child(2) {
    padding-left: 10%;
}

.section-options .container-options .item:nth-child(3) {
    padding-left: 22%;
}

.section-options .container-options .item:last-child {
    padding-left: 33%;
}

.section-contact {
    background-color: #1E1E1E;
    min-height: 700px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.section-contact .container-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
}

.section-contact .container-contact .text-contact {
    font-size: 120px;
    font-weight: 300;
    line-height: 125%;
    color: #fff;
    text-align: center;
}

.section-contact .container-contact .button-contact {
    font-size: 32px;
    line-height: 24px;
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 15px;
    border-radius: 10px;
    transition: .3s ease all;
}

.section-contact .container-contact .button-contact:hover {
    color: #1E1E1E;
    background-color: #fff;
}

.section-contact {
    background-color: #1E1E1E;
}

.section-contact .container-footer {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    border-top: 1px solid #fff;
    padding: 24px 48px 40px 48px;
}

.section-contact .container-footer .side {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-contact .container-footer .side .logo {
    width: 60px;
}

.section-contact .container-footer .side .text {
    font-size: 16px;
    font-weight: 300;
    line-height: 100%;
    color: #fff;
    margin-bottom: 0;
    text-decoration: none;
}

.section-contact .container-hide {
    display: block;
    min-height: 60px;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}

@media(max-width: 1440px){
    .section-header .title-header,
    .section-description .text-description,
    .section-options .container-options p,
    .section-contact .container-contact .text-contact {
        font-size: 80px;
    }
}

@media(max-width: 1199px){
    .section-contact .container-footer {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media(max-width: 991px){
    .cursor {
        width: 200px;
        height: 200px;
    }

    .section-header {
        padding: 90px 0;
    }

    .section-header .title-header,
    .section-description .text-description {
        font-size: 48px;
    }

    .section-options .container-options p {
        font-size: 64px;
    }

    .section-gallery {
        padding-top: 90px;
    }

    .section-description,
    .section-options {
        padding-top: 0;
    }

    .section-contact .container-footer {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media(max-width: 767px){
    .section-gallery .container-fluid {
        transform: translateX(-45%);
    }

    .section-gallery .container-gallery .image {
        min-width: 53vw;
    }


    .section-contact .container-contact .text-contact {
        font-size: 48px;
    }

    .section-contact .container-contact .button-contact {
        font-size: 18px;
    }
    
    .section-contact .container-footer {
        padding: 24px 0;
    }

    .section-contact .container-footer .side {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-contact .container-footer .side .text {
        text-align: center;
        line-height: 125%;
    }

    .section-contact .container-footer .side .text.separator {
        display: none;
    }
}

@media(max-width: 575px) {
    main {
        padding-bottom: 30px;
    }

    body .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }

    .section-header {
        padding: 60px 0 0 0;
    }

    .section-description .text-description {
        font-size: 32px;
    }

    .section-options .container-options p {
        font-size: 48px;
    }

    .section-options .container-options .item:nth-child(1) {
        padding-left: 0;
    }

    .section-options .container-options .item:nth-child(2) {
        padding-left: 5%;
    }

    .section-options .container-options .item:nth-child(3) {
        padding-left: 10%;
    }

    .section-options .container-options .item:nth-child(4) {
        padding-left: 15%;
        text-align: right;
    }

    .section-contact .container-contact {
        height: auto;
    }

    .section-contact .container-contact .text-contact {
        line-height: 100%;
    }
    
}