
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.nav_header{
    display: flex;
    width: 100%;
    height:5vh;
    background-color: #EEEEEE;
    font-family: 'Poppins', sans-serif;
}
.logo{
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo > img{
    width: 30px;
    height: 30px;
}

.list{
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.list > li{
    cursor: pointer;
}
.list > li > a{
    text-decoration: none;
    color: black;
}

.menu{
    width: 60%;
    display: flex;
    justify-content: end;
    gap: 30px;
    align-items: center;
    list-style: none;
    
}

.menu > li > button {
    border: none;
    background-color: transparent;
    cursor: pointer;
}
.menu > li > button > img {
    width:21px;
    height: 16px;
}

.abrir{
    display: none;
}

@media (max-width: 1100px) {
    .nav_header{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    .logo{
        width: 30%;
        display: flex;
        justify-content: flex-start;
        margin-left: 1rem;
    }
    .list{
        display: none;
    }
    .menu{
        width: 70%;
        margin-right: 10px;
    }
    .abrir{
        display: block;
    }
    .abrir > img{
        width:21px;
        height: 16px;
    }
}

.hero{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-template-rows: repeat(6, 1fr);
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 2;
    overflow: hidden;
    object-fit: cover;
}

.hero-img{
    width: 100vw;
    height: auto;
    min-height: 25%;
    aspect-ratio: 5/2;
    overflow: hidden;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.hero-content{
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    grid-row: 2/3;
    grid-column: 1/5;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    margin-left: 25px;
}
.hero-content> h1{
    font-size: 3.2em;
    font-weight: lighter;
    font-family: 'Abhaya Libre', serif;
}
.hero-content > p{
    font-size: 0.7em;
    font-family: 'ABeeZee', sans-serif;;
}

@media (max-width: 750px){
    .hero{
        height: 25%;
    }
    .hero-content{
        grid-row: 5/6;
        grid-column: 1/4;
        align-items: flex-start;
        justify-content: flex-end;
        
    }
    .hero-content> h1{
        font-size: 1rem;
        font-weight: lighter;
    }
    .hero-content > p{
        font-size: 0.5rem;
    }
    .hero-img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

.vehicle-catalog {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
/*     padding: 4rem; */
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.vehicle{
    background-color: #D9D9D9;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 90%;
    width: 90%;
    padding: 20px;
    margin: 0 auto;
    font-family: 'ABeeZee', sans-serif;
    gap: 20px;
}

.vehicle > img{
    width: 70%;
}

.vehicle-text{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vehicle-text > h2{
    font-weight:lighter;
    font-size: 1.5rem;
    margin-left: 15px;
}
.vehicle-text > p{
    font-size: 0.8rem;
    margin-left: 15px;
}
.catalog-button{
    width: 100%;
    gap: 12px;
    display: flex;
    justify-content: space-between;
    object-fit: cover;
}

.catalog-button > a{
    text-decoration: none;
    font-size: small;
    color: black;
    padding: 0.75rem;
    background: #ffffff;
    border: solid #ffffff;
    border-radius: 25px;
}
.car-color{
    width: 40%;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
}

.silver{
    background-color: silver;
}
.red{
    background-color: rgb(146, 21, 21);
}
.yellow{
    background-color: yellow;
}
.blue{
    background-color: rgb(16, 16, 150);
}
.black{
    background-color: black;
}

.color-btn{
    width: 20px;
    cursor: pointer;
    height: 20px;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 20px;
    border: solid 3px rgb(252, 252, 252);
    display: inline-block;
}
.input{
    display: none;
}
.input:checked + .color-btn{
    outline: 1px solid black;
    outline-offset: 2px;
}

@media (max-width: 750px){
    .vehicle-catalog{
        display: flex;
        flex-wrap: wrap;
        max-width: 100%;
        box-sizing: border-box;
    }
    .vehicle{
        width: 80%;
        height: 80%;
        margin: 0.6rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .vehicle-text{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    }
    .car-color{
        display: none;
    }
    .catalog-button{
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.dealer{
    width: 100%;
    margin-top: 40px;
}
.dealer > h2{
    font-family: 'Abhaya Libre', serif;
    font-size: 5rem;
    font-weight: lighter;
    margin-left: 30px;
}

.dealer > p{
    font-family: 'ABeeZee', sans-serif;
    margin-left: 30px;
    margin-top: 30px;
    margin-bottom: 2%;
    max-width: 325px;
    font-size: 1rem;
}

@media(max-width:750px){
    .dealer > br{
        display: none;
    }
    .dealer{
        text-align: center;
        padding: 15px;
        gap: 15px;
    }
    .dealer > h2{
        font-size: 3rem;
        margin: 0;
    }
    .dealer > p{
        font-size: 1.25rem;
        margin: 15px auto;
        max-width: 250px;
    }

}

.discover{
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.discover-img{
    position: absolute;
    width: 100%;
    aspect-ratio: 25/10.5;
    object-fit: cover;
    z-index: 0;
}
.discover-text{
    z-index: 1;
    position: relative;
    width: 57ch;
    margin: 0 8%;
    aspect-ratio: 1.2/0.55;
    background-color: #A2A2A282;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
}
.discover-text > h3{
    color: white;
    font-family:'ABeeZee', sans-serif;
    font-weight: lighter;
    font-size: 4vw;
    padding: 0.6rem;
    margin: 0 10%;
}
.discover-text > a{
    text-decoration: none;
    color: black;
    background-color: white;
    border-radius: 30px;
    font-size: 1vw;
    text-align: center;
    font-family: "Nuckle", sans-serif;
    width: 35ch;
    padding: 0.75rem;
    margin:0 0 4% 10%;
}

@media (max-width:750px) {
    .discover{
        height: auto;
        align-items: center;
        justify-content: center;
    }
    .discover-text{
        justify-content: center;
        align-items: center;
        text-align: center;
        height: auto;
    }
    .discover-text >h3{
        font-size: 5vw;
    }
    .discover-text > a{
        margin: 2% auto;
        font-size: 1vw;
    }
}

.extras{
    display: flex;
    overflow: auto;
    flex-wrap: nowrap;
    list-style: none;
    gap: 30px;
    margin-top: 1.6rem;
    margin-left: 1.6rem;
    margin-right: 1.6rem;
    padding-bottom: 1rem;
}

.extras > li{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 37.5rem;
    aspect-ratio: 3/2;
    height: auto;
    padding: 1rem;
    background-color: #D9D9D9;
    border-radius: 10px;

}
.extras > li >h4{
    height: 10%;
    font-family:'ABeeZee', sans-serif;
    font-weight: lighter;
    font-size: 2rem;
    margin-left: 5%;
}
.extras > li > img{
    width: 90%;
    height: 70%;
    object-fit: cover;
    display: block;
    margin: auto;
}
.extras > li > a{
    text-decoration: none;
    color: black;
    font-family:'ABeeZee', sans-serif;
    width: max-content;
    padding: 0.6rem 1.2rem;
    margin-top: auto;
    margin-left: 5%;
    border-radius: 50px;
    border: #D9D9D9;
    cursor: pointer;
    margin-left: 5%;
    background-color: #ffffff;
}
.extras::-webkit-scrollbar{
    height: 15px;
    background: #D9D9D9;
    border-radius: 10px;
}
.extras::-webkit-scrollbar-thumb{
    background-color: #949494;
    border-radius: 10px;
    border: 2px #D9D9D9 solid ;
}
.extras::-webkit-scrollbar-button {
    display: none;
    height: 0;
    width: 0;
}

@media (max-width:750px){
    .extras >li {
        min-width: 100%;
        height: auto;
        aspect-ratio: 3/2;
        align-items: center;
        gap: 15px;
    }
    .extras > li > img{
        width: 100%;
        height: 75%;
        object-fit: cover;
        display: block;
    }
    
}

.tentation{
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow-y: visible;
    margin-top: 20px;
    z-index: 1;
}


.tentation > img{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    display: block;
    transform-origin: center;
}

.tentation-text{
    color: white;
    font-family:'ABeeZee', sans-serif;
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4rem;
    gap: 15px;
}
.tentation-text > h4{
    font-size: 4vw;
    font-weight: lighter;
    width: 100%;
}
.tentation-text > p{
    font-size: 1.2vw;
    width: 70%;
}

@media (max-width: 700px){
    .tentation{
        display: flex;
        flex-direction: column;
        height: auto;
        overflow-y: visible;
    }
    .tentation > img{
        position: relative;
    }
    .tentation-text{
        width: 100%;
        height: auto;
        background-color: #EEEEEE;
        color: black;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 25px;
        box-sizing: border-box;
        padding: 3rem;
    }
    .tentation-text > h4{
        font-size: 6vw;
        text-align: center;
    }
    .tentation-text >p{
        width: 100%;
        height: 100%;
        font-size: 4vw;
    }
}

.maybach{
    width: 100%;
    /* aspect-ratio: 16/9; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(7, 1fr);
    align-items: flex-end;
    overflow-y: visible;
    min-height: 300px;
    box-sizing: border-box;
    padding: 1rem;
    z-index: 0;
}


.maybach > h4 {
    max-width: 19ch;
    font-size: 3.5vw;
    font-family:'ABeeZee', sans-serif;
    font-weight: lighter;
    grid-row: 3/4;
    grid-column: 1/2;
    margin-left: 50px;
}
.maybach > p{
    max-width: 45ch;
    font-size: 1vw;
    font-family:'ABeeZee', sans-serif;
    font-weight: lighter;
    grid-row: 4/5;
    grid-column: 1/2;
    margin-left: 50px;

}
.maybach >img{
    width: 100%;
    height: auto;
    padding: 1.3rem;
    grid-column: 2/3;
    grid-row: 1/9;
    margin: auto;
}

.maybach > a {
    text-decoration: none;
    color: black;
    text-align: start;
    font-size: 1.2vw;
    font-family: "Nuckle", sans-serif;
    grid-row: 5/6;
    grid-column: 1/2;
    margin-left: 50px;
    font-weight: 500;
}

@media(max-width:700px){
    .maybach{
/*         min-height: 100vh; */
        height: auto;
        width: 100%;
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: auto auto 80px 70px;
        align-items: center;
        justify-content: center;
        overflow-y: visible;
    }
    .maybach > h4 {
        width: 100%;
        max-width: 20ch;
        grid-row: 1/2;
        font-size: 9vw;
        margin: auto;
        font-family: 'Abhaya Libre', serif;
        text-align: center;
        overflow-y: visible;
    }
    .maybach > img{
        grid-row: 2/3;
        grid-column: 1/2;
        border-radius: 40px;
        border:none ;
        object-fit: cover;
        height: 100%;
        margin: auto;
        background-color: #00000000;
    }
    .maybach > p{
        height: 100%;
        max-width: 35ch;
        grid-row: 3/4;
        margin: auto;
        font-size: 3vw;

    }
    .maybach > button{
        height: 100%;
        grid-row: 4/5;
        margin: auto;
        font-size: 4vw;
    }
}
footer{
    background-color: black;
}

.dreamcar{
    width: 100%;
    height: 15vh;
    background-color: #404243e9;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.dreamcar > p {
    color: white;
    font-size: 1.5vw;
    max-width: 70ch;
    font-family:'ABeeZee', sans-serif;
}

.dreamcar > a{
    text-align: center;
    text-decoration: none;
    color: black;
    background-color: white;
    padding: 1rem;
    border-radius: 50px;
    min-width: 25ch;
    width: 20%;
    font-size: 1.5vw;
    font-family:'ABeeZee', sans-serif;
}

.joinThePower{
    height: 60vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    gap: 30px;
}

.joinThePower > h4{
    font-family:'ABeeZee', sans-serif;
    font-size: 2rem;
}
.joinThePower > p{
    font-family: "Nuckle", sans-serif;
}

.joinThePower > form{
    display: flex;
    border: 1px solid white;
    border-radius: 50px;
    border: 1px solid white;
    overflow: hidden;
    width: 100%;
    max-width: 450px;
    background-color: black;
}

.joinThePower > form > input {
    flex: 1;
    padding: 0 20px;
    height: 50px;
    border: none;
    outline: none;
    background-color: black;
    color: white;
    font-size: 14px;
}

.joinThePower > form > button {

    height: 50px;
    width: 20ch;
    border: none;
    background-color: white;
    color: black;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    border-radius: 50px;
    border: 10px;
    transition: background-color 0.3s ease;
}

.joinThePower > label {
    font-family: "Nuckle", sans-serif;
}

.checkmark{
    appearance: none;
    width: 15px;
    height: 15px;
    background-color: black;
    border: 1px solid white;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.checkmark:checked::after{
    content: "";
    position: absolute;
    left: 5px;
    top: -2px;
    width: 5px;
    height: 10px;
    border:2px solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checkbox >a{
    color: white;
}

.social{
    display: flex;
    width: 40%;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 20px;
}
.social > li > a > img{
    width: 20px;
    height: auto;
}

@media (max-width: 700px) {
    .dreamcar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    padding: 30px 20px;
    gap: 20px;
    }

    .dreamcar > p {
    font-size: 1.2rem;
    max-width: 90%;
    }

    .dreamcar > button {
    min-width: 20ch;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    }

    .joinThePower {
    height: auto;
    padding: 40px 20px;
    text-align: center;
    }

    .joinThePower > form {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 100%;
    max-width: 90%;
    }

    .joinThePower > form > input {
    flex: 1;
    padding: 15px 20px;
    height: 45px;
    font-size: 14px;
    }

    .joinThePower > form > button {
    height: 45px;
    padding: 0 20px;
    border-radius: 50px;
    border: 8px solid white;
    font-size: 14px;
    }

    .joinThePower label {
    font-size: 12px;
    display: block;
    margin-top: 10px;
    }

    .social {
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
    }

    .social li {
    display: inline-block;
    }
}

.footer-menu{
    color: white;
    font-family: "Nuckle", sans-serif;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: space-around;
    box-sizing: border-box;
    padding-bottom: 5rem;
}
.footer-menu > div{
    display: flex;
    flex-direction: column;
    gap: 10px;

}
.footer-menu > div > h4{
    font-size: 1.5vw;
    font-weight: lighter;
}

.footer-menu > div > ul{
    list-style: none;
}

.footer-menu > div > ul > li > a{
    text-decoration: none;
    color: rgb(129, 129, 129);
    font-size: 1vw;
}

@media (max-width: 700px) {
    .footer-menu{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }
    .footer-menu > div{
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }
    .footer-menu > div > ul{
        list-style: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .footer-menu > div > h4{
        font-size: 4vw;
        font-weight: lighter;
    }
    .footer-menu > div > ul > li > a{
        text-decoration: none;
        color: rgb(129, 129, 129);
        font-size: 2.5vw;
    }
}

.upper{
    padding: 3rem;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-top: -12 0px;
}
.upper > button{
    height: 30px;
    width: 30px;
    background-color: white;
    color: black;
    border: solid white;
    border-radius: 50px;
}
.upper > button > a > img{
    height: 20px;
    width: 20px;
}

html {
    scroll-behavior: smooth;
}

