@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
}

section {
    position: relative;
    min-height: 100vh;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

.mobile {
    display: none;
}

.title-Sucess {
    font-size: 28px;
    text-align: center;
    max-width: 700px;
    font-weight: 600;
}

.btn-Sucess {
    position: relative;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 15px;
    background: #da7516;
    transition: 0.3s;
    border-radius: 8px;
    text-align: center;
}

.btn-Sucess:hover {
    transform: scale(1.1);
    background: #ff7b00;
    transition: 0.3s;
}

/* Media Queries para Responsividade */
@media (max-width: 768px) {
    .form-section {
        padding: 5% 5%;
    }
}

@media (max-width: 480px) {

    footer {
        padding: 0.5rem 0;
    }

    .title-Sucess {
        font-size: 20px;
    }
    

    .desk{
        display: none;
    }

    .mobile {
        display: block;
    }
}
