* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --coloreBG: #000;
    --orbsColor: radial-gradient(#D9C7FB 22%,#300D75 66%,#FFFFFF 97%);
    --dark-color: #070D1F;
    --sfumatura-footer: linear-gradient(45deg, #828282, #1C1C1C);
}

html {
    scroll-behavior: smooth;
}


body {
    background-color: var(--coloreBG);
    overflow-x: hidden;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: -10px 20px;
    margin-bottom: 100px;
}

.hero-title {
    font-family: pippo;
    color: #ffffff;
    text-shadow: 0px 0px 300px #ffffff;
    text-align: center;
    font-size: 280px;
    line-height: 1;
    margin-top: -100px;
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

.hero-subtitle {
    font-family: pippo;
    color: #ffffff;
    text-shadow: 0px 0px 300px #ffffff;
    text-align: center;
    font-size: 64px;
    letter-spacing: 2em;
    margin-top: -15px;
    margin-left: 1.5em;
    position: relative;
    display: inline-block;
    width: 100%;
}

.hero-btn-container {
    margin-top: 0;
    margin-bottom: -550px;
    position: absolute;
    z-index: 5;
}

.hero-btn {
    font-family: pippo-regular;
    padding: 16px 45px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(45deg, #a855f7, #7c3aed);
    color: white;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-btn a{
    color: white;
    text-decoration: none;
}

.hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.9);
}

.arrow {
    font-size: 16px;
    transition: 0.3s;
}

.hero-btn:hover .arrow {
    transform: translateY(3px);
}

.hero-car {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    margin: 0;
}

.hero-car-img {
    width: 80%;
    max-width: 1200px;
    display: block;
    position: relative;
    z-index: 2;
    margin-top: -10px;
}

.orbs-hero {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--orbsColor);
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    filter: blur(200px);
    opacity: 0.7;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -150px auto;
    margin-bottom: 100px;
}

.about-title {
    padding: 80px 0px;
    font-family: pippo;
    font-size: 128px;
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.about-paragraph {
    font-family: pippo-regular;
    color: white;
    font-size: 25px;
    line-height: 1.3;
    max-width: 950px;
    margin-left: 181px;
    opacity: 80%;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-left: -120px;
}

.about-image img {
    width: 100%;
    height: auto;
}

.carsection {
    padding: 80px 0px;
    width: 100%;
    margin: 0 auto;
}

.car_title {
    padding: 0px 0px;
    font-family: pippo;
    font-size: 128px;
    text-align: center;
    color: white;
    margin-bottom: -10px;
}

.car_img {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    margin-bottom: -200px;
}



.teamsection {
    padding: 80px 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.team_title {
    padding: 0px 0px;
    font-family: pippo;
    font-size: 128px;
    text-align: center;
    color: white;
    margin-bottom: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 30px;
    display: block;
}

.team_paragraph {
    text-align: center;
    font-family: pippo-regular;
    font-size: 32px;
    line-height: 1;
    color: white;
    opacity: 80%;
}

.ourteam_btn {
    display: block;
    margin: 100px auto 0;
    padding: 12px 50px;
    font-family: pippo-regular;
    border-radius: 50px;
    border: none;
    background: linear-gradient(45deg, #a855f7, #7c3aed);
    color: white;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
    transition: 0.3s ease;
}


.contact_container {
    display: flex;
    flex-direction: row;
    padding: 10px 180px;
    margin-top: -30px;
    gap: 15%;
    margin-bottom: 100px;
}

.contact_title {
    padding: 80px 0px;
    font-family: pippo;
    font-size: 128px;
    text-align: center;
    color: white;
    margin-bottom: 10px;
}

.contact_subtitle {
    font-family: pippo-regular;
    color: white;
    font-size: 32px;
    line-height: 1.5;
}

.contact_left {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.contact_paragraph {
    font-family: pippo-regular;
    color: white;
    font-size: 25px;
    line-height: 1.2;
    margin-top: 10px;
    margin-bottom: 40px;
    opacity: 80%;
}

.modulo form {
    display: flex;
    flex-direction: column;
    width: 600px;
    margin-top: 30px;
}

.modulo input {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 19px;
    font-size: 18px;
    border: 1px solid #ccc;
    color: rgba(255, 255, 255, 0.801);
    background-color: #ffffff10;
    transition: all 0.2s ease-in-out;
}

.modulo input:focus {
    outline: none;
    border-color: #aa80f3;
    color: white;
}

.modulo textarea {
    padding: 15px;
    margin-bottom: 20px;
    font-size: 18px;
    height: 200px;
    border-radius: 19px;
    border: 1px solid #ccc;
    background-color: #ffffff10;
    color: rgba(255, 255, 255, 0.801);
    resize: vertical;
    transition: all 0.2s ease-in-out;
}

.modulo textarea:focus {
    outline: none;
    border-color: #aa80f3;
    color: white;
}

.modulo button {
    padding: 15px;
    border-radius: 19px;
    border: none;
    background: linear-gradient(45deg, #a855f7, #7c3aed);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.social_email {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.email_contact {
    font-size: 20px;
    margin: 0;
    display: flex;
    align-items: center;
}

.email_contact i {
    margin-right: 10px;
}

.container_social {
    display: flex;
    gap: 20px;
    margin: 0;
    align-items: center;
}

.social_item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #383154;
    border-radius: 100%;
    padding: 10px;
    transition: 0.3s ease;
}

.social_item i {
    font-size: 30px;
    color: #936CDF;
}

