@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';
}
@media (min-width: 1000px)and (max-width:2560px) {
    
    body{
        background-position: center;
        display: flex;
        justify-content: center;
        align-items: center;
        background-size: cover;
        background: #f5f5f5;
        overflow: hidden;
        min-height: 100vh;
    }
  header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-height: 95px;
        background: transparent;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10%;
        z-index: 100;

    }

    nav {
        width: 100%;
        max-width: 850px;
        height: 100%;
        max-height: 75px;
        background: rgb(23, 23, 23);
        border-radius: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2%;
        gap: 0 65px;
        animation: glow 3s linear infinite;
    }

    nav a {
        text-decoration: none;
        font-family: "Urbanist";
        color: rgb(243, 243, 243);
        font-size: 1.2rem;
        transition: 0.3s;
    }

    nav a:hover {
        width: 100%;
        max-width: 185px;
        height: 100%;
        max-height: 45px;
        border-radius: 30px;
        background: rgb(233, 233, 233);
        color: rgb(23, 23, 23);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
    }

    .img-logo {
        width: 155px;
        height: 115px;
        margin-top: 3%;
        max-width: 100%;
        display: block;
    }

.section-proposta {
    background: #f5f5f5;
    min-height: 100vh;
}

.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 {
    position: relative;
    left: 30%;
    margin-top: 10%;
    width: 100%;
    max-width: 500px;
    min-height: 200px;
    padding: 50px;
    z-index: 100;
}

.left-side {
    display: none;
}

.box-orcamento {
    position: relative;
    top: -40%;
    width: 100%;
    height: auto;
    max-width: 600px;
    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{
    position: relative;
    left: -15%;
    display: block;
    justify-content: flex-start;
    align-items: center;
}
.box-img img {
    width: 100%;
    max-width: 500px;
    height: 500px;
    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);
}

.btn-2:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-feedback {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 16px;
    border: 1px solid transparent;
}

.form-feedback[hidden] {
    display: none !important;
}

.form-feedback--success {
    background: rgba(46, 160, 100, 0.12);
    border-color: rgba(46, 160, 100, 0.35);
    color: #1b5e3a;
}

.form-feedback--error {
    background: rgba(200, 60, 60, 0.1);
    border-color: rgba(200, 60, 60, 0.35);
    color: #7a1f1f;
}


}
@media (max-width: 850px) {

    header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-height: 95px;
        display: flex;
        justify-content: center;
        gap: 5%;
        align-items: center;
        z-index: 100;
    }

   nav {
        width: 100%;
        max-width: 550px;
        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;
    }

    .section-proposta {
        min-height: 100vh;
        padding: 120px 20px 60px;
        background-position: center;
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .box-proposta {
        width: 100%;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .proposta {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .right-side {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        padding: 20px;
        text-align: center;
    }

    .left-side {
        display: none;
    }

    .box-orcamento {
        width: 100%;
        max-width: 100%;
        margin: 40px auto;
        padding: 25px 20px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        background: #ffffff;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        position: relative;
        overflow: hidden;
    }

    .box-orcamento::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 2px;
        border-radius: 20px;
        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;
    }

    .titulo-orcamento {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        text-align: center;
        font-weight: 900;
    }

    .subtitulo-orcamento {
        font-size: 1rem;
        text-align: center;
        line-height: 1.5;
    }

    .box-img img {
        display: none;
    }

    .input-box {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .input-campo {
        width: 100%;
        max-width: 100%;
    }

    label {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 6px;
        color: rgb(23, 23, 23);
    }

    .input-campo input {
        width: 100%;
        padding: 14px;
        border: none;
        background: rgb(189, 181, 181);
        border-radius: 12px;
        font-size: 14px;
        outline: none;
    }

    .input-campo input:focus {
        box-shadow: 0 0 0 2px rgba(253, 133, 58, 0.5);
    }

    .form-group {
        width: 100%;
        margin-top: 10px;
    }

    textarea {
        width: 100%;
        min-height: 140px;
        background: #dcdcdc;
        border: none;
        border-radius: 16px;
        padding: 16px;
        font-size: 14px;
        resize: none;
        outline: none;
    }

    textarea:focus {
        box-shadow: 0 0 0 2px rgba(253, 133, 58, 0.5);
    }

    textarea::placeholder {
        color: #666;
    }

    .btn-2 {
        width: 100%;
        min-height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 14px;
        font-size: 1rem;
        border-radius: 30px;
        border: 2px solid rgba(253, 133, 58, 0.5);
        background: transparent;
        color: rgb(23, 23, 23);
        cursor: pointer;
        transition: 0.3s;
    }

    .btn-2:hover {
        background: rgb(23, 23, 23);
        color: #fff;
        transform: translateY(-2px);
    }

    .btn-2:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

    .form-feedback {
        width: 100%;
        padding: 14px 18px;
        border-radius: 12px;
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 12px;
        border: 1px solid transparent;
    }

    .form-feedback[hidden] {
        display: none !important;
    }

    .form-feedback--success {
        background: rgba(46, 160, 100, 0.12);
        border-color: rgba(46, 160, 100, 0.35);
        color: #1b5e3a;
    }

    .form-feedback--error {
        background: rgba(200, 60, 60, 0.1);
        border-color: rgba(200, 60, 60, 0.35);
        color: #7a1f1f;
    }
}
