@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Urbanist';
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 95px;
    background: rgb(233, 233, 233);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    z-index: 100;

}

nav {
    width: 100%;
    max-width: 750px;
    height: 100%;
    max-height: 60px;
    background: rgb(23, 23, 23);
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 55px;
    animation: glow 3s linear infinite;
}

nav a {
    text-decoration: none;
    font-family: "Urbanist";
    color: rgb(243, 243, 243);
    font-size: clamp(0.7rem, 1vw + 0.1rem, 1.2rem);
    transition: 0.3s;
}

nav a:hover {
    width: 100%;
    max-width: 140px;
    height: 100%;
    max-height: 40px;
    border-radius: 30px;
    background: rgb(243, 243, 243);
    color: rgb(23, 23, 23);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
.img-logo {
    max-width: 140px;
    height: 70px;
    width: 100%;
    display: block;
}

.section-proposta {
    width: 100%;
    height: 100%;
    max-height: 600px;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 60px 130px;
}

.box-proposta {
    width: 100%;
    max-width: 1200px;
    min-height: 55vh;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.proposta{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.right-side {
    width: 100%;
    max-width: 500px;
    min-height: 200px;
    padding: 50px;
    margin: 0;
}
.left-side{
    display: none;
}
.box-orcamento {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 80px auto;
    padding: 30px;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.titulo-orcamento {
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 10px;
}

.subtitulo-orcamento {
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.3rem);
}

.box-img img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    opacity: 0.5;
}

.box-orcamento::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 24px;

    background: linear-gradient(270deg, #0a0807, #fbf4ff, #0e0d0d);
    background-size: 400% 400%;
    animation: animacao 6s ease infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    z-index: -1;
}

.input-box {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
}

.input-campo {
    width: 100%;
    max-width: 250px;
    display: flex;
    flex-direction: column;
}

label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: rgb(23, 23, 23);
}

.input-campo input {
    width: 100%;
    padding: 12px;
    border: none;
    background: rgb(189, 181, 181);
    border-radius: 12px;
    font-size: 14px;
    transition: 0.3s;
    outline: none;
}

.input-campo input:focus {
    box-shadow: 0 0 0 2px rgba(253, 133, 58, 0.5);
}

.form-group {
    width: 100%;
    max-width: 600px;
    margin: 30px auto 0;
}

textarea {
    width: 100%;
    min-height: 160px;
    background: #dcdcdc;
    border: none;
    border-radius: 16px;
    padding: 16px;
    font-size: 14px;
    resize: none;
    outline: none;
    transition: 0.3s;
}

textarea::placeholder {
    color: #666;
}

textarea:focus {
    box-shadow: 0 0 0 2px rgba(253, 133, 58, 0.5);
}

.btn-2 {
    display: inline-flex;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 30px;
    border: 2px solid rgba(253, 133, 58, 0.5);
    background: transparent;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: rgb(23, 23, 23);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-2:hover {
    color: #fff;
    font-weight: 700;
    background: rgb(23, 23, 23);
    transform: translateY(-2px);
}



@media (max-width: 450px){
       .section-proposta {
        min-height: auto; 
        padding: 100px 15px 40px; 
        align-items: flex-start; 
    }
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-height: 95px;
        background: rgb(233, 233, 233);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100;

    }
    nav {
        width: 100%;
        max-width: 750px;
        height: 100%;
        max-height: 60px;
        background: rgb(23, 23, 23);
        border-radius: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        animation: glow 3s linear infinite;
    }

    nav a {
        text-decoration: none;
        font-family: "Urbanist";
        color: rgb(243, 243, 243);
        font-size: clamp(0.7rem, 1vw + 0.1rem, 1.2rem);
        transition: 0.5s;
    }

    nav a:hover {
        width: 100%;
        max-width: 100px;
        height: 100%;
        max-height: 40px;
        border-radius: 30px;
        background: rgb(243, 243, 243);
        color: rgb(23, 23, 23);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
    }

    .img-logo{
        display: none;
    }
    .box-proposta {
        width: 100%;
        height: 500px; 
        display: flex;
        flex-direction: column; 
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    .box-proposta{
        display: none;
    }
    .right-side{
        display: none;
    }
    .box-img{
        display: none;
    }
}