/* === FUNDO === */
.orcamento-hero {
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding-top: 130px;
}

/* GRADIENTE SOBRE A IMAGEM DO BODY */
.orcamento-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #F72585cc, #9D4EDDcc, #4361EEcc);
    z-index: 0;
}

/* === FUNDO ANIMADO === */
.tech-lines {
    position: absolute;
    inset: 0;
    background-image: url('/images/lines-tech.png');
    background-size: 200% 200%;
    opacity: 0.22;
    animation: moveLines 14s linear infinite;
    z-index: 1;
}

@keyframes moveLines {
    0% { background-position: 0 0; }
    100% { background-position: -200% 0; }
}

/* === CONTAINER (MESMO DO CONTATO) === */
.orcamento-container {
    width: 85%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 160px);
}

/* === LADO ESQUERDO (TÍTULO) === */
.orcamento-info {
    width: 45%;
    color: white;
}

.orcamento-info h1 {
    font-size: 54px;
    font-weight: 900;
    margin-bottom: 15px;
}

.orcamento-info p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* === FORMULÁRIO (IGUAL AO CONTATO) === */
.orcamento-form {
    width: 45%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 35px;
    border-radius: 18px;
    backdrop-filter: blur(6px);
    color: white;
}

.campo {
    margin-bottom: 18px;
}

.campo label {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

.campo input,
.campo select,
.campo textarea {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    outline: none;
    font-size: 16px;
    background: rgba(255,255,255,0.85);
    color: #000;
}

/* botão */
.btn-orcamento {
    margin-top: 10px;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: white;
    color: #7A2EC6;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
    transition: .3s;
}

.btn-orcamento:hover {
    transform: scale(1.05);
}

/* === MOBILE === */
@media (max-width: 768px) {

    .orcamento-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .orcamento-info {
        width: 100%;
    }

    .orcamento-info h1 {
        font-size: 38px;
    }

    .orcamento-info p {
        font-size: 18px;
    }

    .orcamento-form {
        width: 100%;
    }
}
/* AUMENTA A ALTURA ONLY MOBILE */
@media (max-width: 768px) {

    .orcamento-hero {
        min-height: 150vh !important; /* <<< 50% a mais de altura */
        height: auto !important;
    }
}