/* Estilos específicos para a página Orçamento */

.hero-orcamento-tamanho {
    background-image: url('../img/OLD/fundo-sobre.png'); /* Exemplo de imagem de fundo */
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px; /* Altura mínima para a seção hero */
    margin-top: 80px; /* Ajuste para o cabeçalho fixo */
}

.hero-orcamento .hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--white);
}

.hero-orcamento h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--white);
}

.hero-orcamento .hero-subtitle {
    font-size: 1.5em;
    font-weight: 300;
    color: var(--white);
}

/* Formulário de Orçamento */
.formulario-orcamento {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.formulario-orcamento .container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.formulario-orcamento .form-wrapper {
    flex: 2;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.formulario-orcamento .form-intro h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.formulario-orcamento .form-intro p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.orcamento-form .form-section {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.orcamento-form .form-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.orcamento-form .form-section h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.orcamento-form .section-subtitle {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.orcamento-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.orcamento-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.orcamento-form .form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.orcamento-form .form-group input,
.orcamento-form .form-group select,
.orcamento-form .form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.orcamento-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.orcamento-form .checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.orcamento-form .checkbox-item {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.orcamento-form .checkbox-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.orcamento-form .checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    width: auto;
}

.orcamento-form .checkbox-item label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    cursor: pointer;
}

.orcamento-form .checkbox-item label img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.orcamento-form .checkbox-item label span {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: var(--text-color);
}

.orcamento-form .form-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.orcamento-form .btn-primary,
.orcamento-form .btn-secondary {
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
}

.orcamento-form .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.orcamento-form .btn-primary:hover {
    background-color: var(--secondary-color);
}

.orcamento-form .btn-secondary {
    background-color: #ccc;
    color: var(--text-color);
}

.orcamento-form .btn-secondary:hover {
    background-color: #bbb;
}

/* Sidebar de Informações */
.info-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-sidebar .info-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-sidebar .info-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.info-sidebar .info-card .steps .step {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-sidebar .info-card .steps .step-number {
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-sidebar .info-card .steps .step p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.info-sidebar .info-card .contact-options a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.info-sidebar .info-card .contact-options a img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.info-sidebar .info-card .contact-options .whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.info-sidebar .info-card .contact-options .whatsapp:hover {
    background-color: #1DA851;
}

.info-sidebar .info-card .contact-options .phone {
    background-color: var(--primary-color);
    color: var(--white);
}

.info-sidebar .info-card .contact-options .phone:hover {
    background-color: var(--secondary-color);
}

.info-sidebar .info-card .contact-options .email {
    background-color: #EA4335;
    color: var(--white);
}

.info-sidebar .info-card .contact-options .email:hover {
    background-color: #C53127;
}

.info-sidebar .info-card .garantias {
    list-style: none;
    padding-left: 0;
}

.info-sidebar .info-card .garantias li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.info-sidebar .info-card .garantias li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* FAQ Orçamento */

section.faq-orcamento {
    padding: 10px 0 30px 0;
    background-color: var(--light-gray);
}
.faq-orcamento {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-orcamento h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.faq-orcamento .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-orcamento .faq-item {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.faq-orcamento .faq-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-orcamento .faq-item p {
    font-size: 16px;
    line-height: 1.6;
}

/* Media Queries para Responsividade */
@media (max-width: 992px) {
    .formulario-orcamento .container {
        flex-direction: column;
        align-items: center;
    }

    .formulario-orcamento .form-wrapper {
        width: 100%;
    }

    .info-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-orcamento h1 {
        font-size: 2.5em;
    }

    .hero-orcamento .hero-subtitle {
        font-size: 1.2em;
    }

    .orcamento-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .orcamento-form .form-group {
        margin-bottom: 20px;
    }

    .orcamento-form .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .orcamento-form .form-actions {
        flex-direction: column;
    }

    .orcamento-form .btn-primary,
    .orcamento-form .btn-secondary {
        width: 100%;
        margin-bottom: 15px;
    }

    .faq-orcamento .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-orcamento h1 {
        font-size: 2em;
    }

    .hero-orcamento .hero-subtitle {
        font-size: 1em;
    }

    .hero-orcamento-tamanho{
        margin-top: 0px;
    }


    .formulario-orcamento .form-intro h2,
    .orcamento-form .form-section h3,
    .info-sidebar .info-card h3,
    .faq-orcamento h2 {
        font-size: 2em;
    }
}

