* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.wow {
    will-change: transform, opacity;
}

.container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
}

.row .half {
    flex: 0 0 47.5%;
}

body {
    font-family: Arial, sans-serif;
    background-color: #efefef;
    color: #333;
    font-size: 18px;
}

.mobile-only {
    display: none !important;
}

header {
    background-color: #262626;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

header .logo {
    display: block;
    height: 50px;
}

header .logo img {
    display: block;
    height: 100%;
    width: auto;
}

main #main-carrousel {
    position: relative;
    height: 100vh;
    max-height: 800px;
    overflow: hidden;
}

main #main-carrousel::after {
    display: table;
    content: "";
    clear: both;
}

main #main-carrousel .wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    z-index: -1;
}

main #main-carrousel .wrapper img {
    position: absolute;
    width: 110%;
    height: 110%;
    left: 50%;
    object-fit: cover;
    object-position: center;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

main #main-carrousel .wrapper img:first-of-type,
main #main-carrousel .wrapper img.active {
    opacity: 1;
}

main .form-container {
    float: right;
    width: 635px;
    margin-top: 80px;
}

main .form-container .row,
main .form-container .division {
    margin-bottom: 10px;
}

main .form-container label {
    display: none;
}

main .form-container h2,
main .form-container h3,
main .form-container span {
    color: #fff;
}

main .form-container h2 {
    margin-bottom: -0.15em;
    font-size: 3.5em;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

main .form-container h3 {
    margin-bottom: 30px;
    font-size: 2.2em;
    text-align: center;
}

main .form-container span:not(.desktop) {
    display: block;
    margin-bottom: 10px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="time"],
select,
textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 1em;
    font-weight: bold;
    background-color: #fff;
    border-radius: 15px;
    border: none;
    outline: none;
}

textarea {
    height: 120px;
    resize: none;
}

input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input::-ms-input-placeholder,
input::placeholder {
    color: #999;
}

main .form-container button[type="submit"] {
    width: 100%;
    height: 50px;
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    background-color: #262626;
    border: none;
    outline: none;
    border-radius: 15px;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

main .form-container button[type="submit"]:hover {
    color: #262626;
    background: linear-gradient(to bottom, #fff, #999);
}

#promotions-container {
    padding: 100px 0;
}

#promotions-container h2,
.paviments h2,
.paviments h3 {
    font-size: 2.8em;
    font-weight: normal;
    text-align: center;
}

#promotions-container .row {
    display: flex;
    gap: 10px;
    justify-content: space-evenly;
    align-items: center;
    margin: 50px 0 80px;
}

#promotions-container .row .quarter {
    flex: 0 1 277px;
    text-align: center;
}

#promotions-container .row .quarter img {
    display: block;
    width: 100%;
}

#promotions-container .budget-section h3 {
    font-size: 1.4em;
    font-weight: normal;
    text-align: center;
}

#promotions-container .budget-section a,
.paviments .budget {
    display: block;
    margin: 15px auto 0;
    width: 500px;
    padding: 20px;
    color: #fff;
    font-size: 1.8em;
    text-align: center;
    text-decoration: none;
    background-color: #262626;
    border-radius: 15px;
    transition: color 0.3s ease;
}

#promotions-container .budget-section a:hover,
.paviments .budget:hover {
    color: #262626;
    background: linear-gradient(to bottom, #fff, #999);
}

.paviments {
    padding: 60px 0;
    color: #fff;
    background-color: #262626;
    border-radius: 40px 40px 0 0;
}

.paviments .gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 37px;
    margin: 60px 0;
}

.gallery .gallery-item {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
}

.gallery .gallery-item:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.gallery .gallery-item span {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 1.8em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery .gallery-item:hover span {
    opacity: 1;
}

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

.paviments .budget {
    color: #262626;
    background-color: #fff;
}

.about-leore-wrapper {
    padding-top: 120px;
    background-color: #262626;
}

.about-leore-container {
    display: flex;
    gap: 60px;
    padding-bottom: 70px;
}

.about-leore-container .about-leore {
    flex: 0 0 380px;
}

.about-leore h2,
.about-leore p {
    color: #fff;
}

.carrousel-container {
    --carousel-offset: 220px;
    position: relative;
    flex: 1 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

.carrousel-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 230px;
    height: 390px;
    object-fit: cover;
    border-radius: 20px;
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0;
    transition:
        transform 0.6s ease,
        opacity 0.6s ease,
        box-shadow 0.6s ease;
    cursor: pointer;
    z-index: 1;
}

.carrousel-container img.active {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
    z-index: 3;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.carrousel-container img.is-left {
    transform: translate(calc(-50% - var(--carousel-offset)), -50%) scale(0.95);
    opacity: 0.7;
    z-index: 2;
}

.carrousel-container img.is-right {
    transform: translate(calc(-50% + var(--carousel-offset)), -50%) scale(0.95);
    opacity: 0.7;
    z-index: 2;
}

.carrousel-container img.is-out {
    opacity: 0;
    pointer-events: none;
}

.carrousel-container img:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6);
}

.about-leore h2 {
    text-align: left;
    margin-bottom: 50px;
}

.about-leore p {
    font-size: 1.2em;
    line-height: 160%;
}

section.visit-showroom {
    position: relative;
    width: 100%;
    aspect-ratio: 120/53;
    background-color: #262626;
}

section.visit-showroom .background-image {
    position: absolute;
    width: 100%;
    height: auto;
    aspect-ratio: 120/53;
}

section.visit-showroom h2 {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    color: #fff;
    font-size: 2.6em;
    font-weight: normal;
    text-align: center;
}

section.visit-showroom .address-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    display: flex;
    justify-content: space-between;
    width: 930px;
    transform: translateX(-50%);
}

.address-container .left-side {
    flex: 0 0 480px;
}

.address-container .left-side p {
    color: #fff;
    font-size: 1.3em;
    line-height: 160%;
}

.address-container .right-side {
    flex: 0 0 auto;
}

.right-side .maps-button {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 23px;
    padding: 10px 30px;
    color: #fff;
    font-size: 2.4em;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 15px;
}

.right-side .maps-button img {
    display: inline-block;
    width: 50px;
}

.right-side .maps-button span {
    text-decoration: underline;
}

section#follow .container {
    display: flex;
}

section#follow .left-side,
section#follow .right-side {
    width: 50%;
    max-height: 380px;
    overflow: hidden;
}

section#follow .left-side img {
    width: 1230px;
    margin-left: -180px;
}

section#follow .right-side {
    padding-top: 130px;
}

section#follow .right-side span,
section#follow .right-side a {
    display: block;
    font-size: 2.3em;
    color: #262626;
    text-align: center;
}

footer {
    padding: 65px 0;
    background-color: #262626;
    border-radius: 50px 50px 0 0;
}

footer .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

footer img.logo {
    display: block;
    width: 200px;
    margin: 0 auto;
}

.social-medias-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.social-medias-nav a {
    display: block;
    padding: 12px;
    border: 1px solid #efefef;
    border-radius: 13px;
    transition: transform 0.3s ease;
}

.social-medias-nav a:hover {
    transform: scale(1.1);
}

.social-medias-nav a img {
    display: block;
    width: 22px;
}

footer .copyright {
    display: flex;
    flex-direction: column;
    font-size: 1.2em;
    text-align: center;
    color: #efefef;
}

footer .copyright a {
    color: #efefef;
}

.whatsapp-button {
    position: relative;
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-button img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 60px;
}

@media screen and (max-width: 1200px) {
    .container {
        width: 960px;
    }

    main .form-container {
        width: 570px;
        margin-top: 50px;
    }

    #promotions-container h2,
    .paviments h2,
    .paviments h3 {
        font-size: 2.4em;
    }

    #promotions-container .budget-section h3 {
        font-size: 1.2em;
    }

    #promotions-container .budget-section a {
        width: 390px;
        font-size: 1.8em;
    }

    #promotions-container .row .quarter {
        flex: 0 1 215px;
    }

    .about-leore-container .about-leore {
        flex: 0 0 315px;
    }

    .about-leore h2 {
        margin-bottom: 20px;
        font-size: 2em;
    }

    .about-leore p {
        font-size: 1em;
    }

    .carrousel-container img {
        width: 172px;
        height: 320px;
    }

    .carrousel-container {
        --carousel-offset: 190px;
        min-height: 360px;
    }

    section.visit-showroom h2 {
        font-size: 2em;
    }

    section.visit-showroom .address-container {
        width: 750px;
    }

    .address-container .left-side {
        flex: 0 0 380px;
    }

    .address-container .left-side p {
        font-size: 1em;
    }

    .right-side .maps-button {
        font-size: 1.8em;
    }

    .right-side .maps-button img {
        width: 40px;
    }

    section#follow .left-side img {
        margin-left: -305px;
    }
}

@media screen and (max-width: 990px) {
    .container {
        width: 750px;
    }

    main .form-container {
        width: 500px;
    }

    main .form-container h2 {
        font-size: 3em;
    }

    main .form-container h3 {
        font-size: 1.9em;
    }

    #promotions-container .row {
        justify-content: center;
    }

    #promotions-container .row .quarter {
        flex: 0 1 260px;
    }

    #promotions-container .budget-section h3 {
        font-size: 1.1em;
    }

    #promotions-container .budget-section a {
        width: 300px;
        font-size: 1.4em;
    }

    .paviments .gallery {
        grid-template-columns: 1fr 1fr;
    }

    .about-leore-wrapper {
        padding-top: 60px;
    }

    .about-leore-container {
        gap: 35px;
    }

    .about-leore-container .about-leore {
        flex: 0 0 210px;
    }

    .about-leore h2 {
        font-size: 1.6em;
    }

    .about-leore p {
        font-size: 0.9em;
    }

    .carrousel-container img {
        width: 145px;
        height: 275px;
    }

    .carrousel-container {
        --carousel-offset: 160px;
        min-height: 320px;
    }

    section.visit-showroom h2 {
        font-size: 1.5em;
    }

    section.visit-showroom .address-container {
        width: 700px;
        bottom: 30px;
    }

    .address-container .left-side {
        flex: 0 0 364px;
    }

    .address-container .left-side p {
        font-size: 0.9em;
    }

    .right-side .maps-button {
        font-size: 1.4em;
        gap: 10px;
        margin-top: 15px;
        padding: 8px 20px;
    }

    .right-side .maps-button img {
        width: 34px;
    }

    section#follow .left-side,
    section#follow .right-side {
        max-height: 320px;
    }

    section#follow .left-side img {
        width: 1040px;
        margin-left: -285px;
    }

    section#follow .right-side span,
    section#follow .right-side a {
        font-size: 1.8em;
    }
}

@media screen and (max-width: 768px) {
    .container {
        width: 540px;
    }

    .row {
        gap: 0;
    }

    .row .half {
        flex: 1 1 100%;
    }

    .row .half:last-child {
        margin-top: 10px;
    }

    main #main-carrousel {
        top: initial;
        left: initial;
        height: auto;
        min-height: auto;
        max-height: initial;
        overflow: initial;
    }

    main #main-carrousel .wrapper {
        position: relative;
        height: 80vh;
        min-height: initial;
    }

    main #main-carrousel .wrapper img {
        height: 100%;
    }

    main .form-container {
        width: 100%;
        margin-top: -230px;
        margin-bottom: 60px;
    }

    main .form-container h2 {
        font-size: 2.5em;
    }

    main .form-container h3 {
        font-size: 1.6em;
    }

    main .request-quote-block {
        margin-top: 230px;
    }

    main .request-quote-block h3 {
        font-size: 2em;
        font-weight: normal;
        color: #262626;
    }

    main .request-quote-block h3 small {
        font-size: 0.7em;
    }

    main .request-quote-block ~ span {
        color: #262626;
    }

    input[type="text"],
    input[type="tel"],
    input[type="email"],
    input[type="password"],
    input[type="date"],
    input[type="time"],
    select,
    textarea {
        border: 1px solid #ccc;
    }

    main .form-container button[type="submit"] {
        width: 240px;
    }

    #promotions-container {
        background-color: #262626;
        border-radius: 40px;
    }

    #promotions-container h2,
    .paviments h2,
    .paviments h3 {
        margin-bottom: 10px;
        font-size: 1.6em;
        color: #fff;
    }

    #promotions-container h3 {
        font-weight: normal;
        color: #fff;
        text-align: center;
    }

    #promotions-container .row {
        margin-bottom: 0;
    }

    #promotions-container .row .quarter {
        flex: 0 1 100%;
        margin-bottom: 90px;
    }

    #promotions-container .row .quarter:last-child {
        margin-bottom: 0;
    }

    #promotions-container .row .quarter h3 {
        margin-bottom: 50px;
    }

    #promotions-container .row .quarter a,
    .paviments .budget {
        display: block;
        width: 200px;
        margin: 20px auto 0;
        padding: 12px;
        color: #262626;
        font-weight: normal;
        text-decoration: none;
        background-color: #fff;
        border-radius: 12px;
    }

    #promotions-container .budget-section {
        display: none;
    }

    .paviments {
        padding: 60px 0;
        background-color: #efefef;
    }

    .paviments h2,
    .paviments h3 {
        color: #262626;
    }

    .paviments .budget {
        font-size: 1em;
        color: #fff;
        background-color: #262626;
    }

    .about-leore-container {
        gap: 50px;
        flex-direction: column;
        align-items: center;
    }

    .about-leore-container .about-leore {
        flex: 0 0 auto;
    }

    .about-leore p {
        display: none;
    }

    .about-leore-container p {
        font-size: 1em;
        line-height: 160%;
        color: #fff;
        text-align: center;
    }

    .carrousel-container {
        --carousel-offset: min(32vw, 140px);
        min-height: 300px;
    }

    .carrousel-container img {
        width: 156px;
        height: 250px;
    }

    .carrousel-container img.active {
        transform: translate(-50%, -50%) scale(1.15);
    }

    section.visit-showroom,
    section.visit-showroom .background-image {
        aspect-ratio: 220 / 263;
    }

    section.visit-showroom .address-container {
        width: 100%;
        padding: 0 30px;
    }

    section#follow .left-side,
    section#follow .right-side {
        max-height: 270px;
    }

    section#follow .left-side img {
        width: 865px;
        margin-left: -280px;
    }

    section#follow .right-side {
        padding-top: 100px;
    }

    footer img.logo {
        width: 150px;
    }

    footer .copyright {
        font-size: 1em;
    }

    .desktop {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

@media screen and (max-width: 576px) {
    body {
        font-size: 16px;
    }

    .container {
        width: 100%;
    }

    header .logo {
        height: 35px;
    }

    input[type="text"],
    input[type="tel"],
    input[type="email"],
    input[type="password"],
    input[type="date"],
    input[type="time"],
    select,
    textarea {
        margin: 5px 0;
    }

    main .form-container {
        margin-top: -130px;
    }

    main .form-container h2 {
        font-size: 2em;
    }

    main .form-container h3 {
        font-size: 1.3em;
    }

    main .request-quote-block {
        margin-top: 140px;
    }

    main .request-quote-block h3 {
        font-size: 1.6em;
    }

    main .form-container button[type="submit"] {
        width: 210px;
    }

    #promotions-container {
        border-radius: 20px;
    }

    .paviments .gallery {
        grid-template-columns: 1fr;
    }

    .carrousel-container {
        --carousel-offset: min(34vw, 110px);
        min-height: 260px;
    }

    .carrousel-container img {
        width: 140px;
        height: 220px;
    }

    .about-leore-wrapper {
        border-radius: 40px 40px 0 0;
    }

    .about-leore h2 {
        font-size: 2em;
    }

    .about-leore-wrapper p {
        font-size: 1.2em;
    }

    .carrousel-container img.active {
        transform: translate(-50%, -50%) scale(1.1);
    }

    section.visit-showroom,
    section.visit-showroom .background-image {
        aspect-ratio: 220 / 263;
    }

    section.visit-showroom .address-container {
        width: 100%;
        flex-direction: column;
        gap: 30px;
        padding: 0 30px;
    }

    .address-container .left-side {
        flex: 0 0 auto;
        width: 50%;
        min-width: 250px;
        order: 2;
    }

    .address-container .left-side p {
        text-align: left;
        font-size: 0.9em;
    }

    .address-container .right-side {
        flex: 0 0 auto;
        order: 1;
    }

    .right-side .maps-button {
        justify-content: center;
        gap: 10px;
        width: 200px;
        font-size: 1.4em;
        margin: 15px auto 0;
        padding: 8px 20px;
    }

    section#follow .left-side,
    section#follow .right-side {
        max-height: 24vh;
    }

    section#follow .left-side img {
        width: auto;
        height: 47.25vh;
        margin-left: -50vw;
    }

    section#follow .right-side {
        padding-top: 85px;
    }

    section#follow .right-side span,
    section#follow .right-side a {
        font-size: 1.4em;
    }
}

@media screen and (max-width: 412px) {
    section#follow .left-side,
    section#follow .right-side {
        max-height: 23vh;
    }

    section#follow .left-side img {
        width: auto;
        height: 46vh;
    }

    section#follow .right-side {
        padding-top: 85px;
    }
}

@media screen and (max-width: 390px) {
    section#follow .left-side img {
        margin-left: -48vw;
    }
}

@media screen and (max-width: 375px) {
    section#follow .left-side img {
        margin-left: -38vw;
    }

    section#follow .right-side {
        padding-top: 46px;
    }
}

@media screen and (max-width: 360px) {
    section#follow .left-side,
    section#follow .right-side {
        max-height: 23vh;
    }

    section#follow .left-side img {
        height: 45vh;
        margin-left: -45vw;
    }

    section#follow .right-side {
        padding-top: 85px;
    }

    section#follow .right-side span,
    section#follow .right-side a {
        font-size: 1.2em;
    }
}

@media screen and (max-width: 344px) {
    section#follow .left-side,
    section#follow .right-side {
        max-height: 19vh;
    }

    section#follow .left-side img {
        height: 39vh;
        margin-left: -49vw;
    }

    section#follow .right-side {
        padding-top: 60px;
    }
}
