/* Estilos Gerais (exemplo, mantenha os seus existentes) */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-top: 120px; /* Ajuste para a altura do header fixo */
    background-color: #eb6512;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Fixo */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
    z-index: 1000;
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between; /* Alinha logo à esquerda e menu à direita */
    align-items: center;
}

.logo img {
    height: 50px; /* Ajuste a altura do seu logo conforme necessário */
}

/* Estilos do Menu Hambúrguer */
.hamburger-menu {
    display: none; /* Esconde o hambúrguer em telas maiores por padrão */
    font-size: 28px;
    cursor: pointer;
    color: #eb6512;
}

.main-nav {
    display: block; /* Mostra o menu em telas maiores por padrão */
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Para alinhar os itens do menu horizontalmente em desktop */
}

.main-nav li {
    margin-left: 20px;
}

.main-nav a {
    text-decoration: none;
    color: #eb6512;
    font-weight: bold;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #eb6512; /* Cor ao passar o mouse */
}

/* Media Queries para Telas Menores (Responsividade) */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block; /* Mostra o hambúrguer em telas menores */
    }

    .main-nav {
        display: none; /* Esconde o menu de navegação em telas menores por padrão */
        flex-direction: column; /* Empilha os itens verticalmente */
        width: 100%;
        position: absolute;
        top: 70px; /* Abaixo do header */
        left: 0;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 10px 0;
        text-align: center;
    }

    .main-nav.active {
        display: flex; /* Mostra o menu quando a classe 'active' é adicionada */
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .main-nav li {
        margin: 10px 0;
    }
}

/* Seções da Página (mantenha os seus estilos existentes, ajuste se necessário) */
.hero-banner {
    background-color: #eb6512;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
}

.below-banner {
    background-color: #fff;
    padding: 20px 20px;
    text-align: center;
}

.below-banner .desk-image {
    max-width: 50%;
    height: auto;
    margin-bottom: 10px;
}

.below-banner-text {
    text-align: left; /* Alinha o texto à esquerda */
	color: #666666;      /* Cor cinza escuro */
}

.below-banner-text02 {
    text-align: left; /* Alinha o texto à esquerda */
	color: #eb6512;      /* Cor cinza escuro */
}

.main-content {
    background-color: #fff;
    padding: 40px;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.form-group input[type="text"], 
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box; /* Garante que o padding não aumente a largura total */
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus {
    border-color: #eb6512;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
}

.results {
    background-color: #e9f7ef;
    border: 1px solid #d4edda;
    border-radius: 5px;
    padding: 20px;
    margin-top: 30px;
}

.results h2 {
    color: #eb6512;
    margin-top: 0;
}

.results p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.results span {
    font-weight: bold;
    color: #eb6512;
}

.privacy-agreement {
    margin-top: 20px;
    font-size: 0.9em;
    display: flex;
    align-items: flex-start;
}

.privacy-agreement input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px; /* Alinha o checkbox com o texto */
}

.privacy-agreement label {
    font-weight: normal;
    color: #333;
    display: inline; /* Para que o label não quebre a linha */
}

.privacy-agreement a {
    color: #eb6512;
    text-decoration: none;
    font-weight: bold;
}

.privacy-agreement a:hover {
    text-decoration: underline;
}

button[type="submit"] {
    background-color: #eb6512;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

button[type="submit"]:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Botão WhatsApp Flutuante */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366; /* Cor do WhatsApp */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 35px;
    height: 35px;
}


/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    margin-top: 50px;
}

footer .logo img {
    height: 60px; /* Ajuste para o logo no footer */
    margin-bottom: 20px;
}

footer p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #ccc;
}

footer a {
    color: #eb6512;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* --- Opções com Bola Azul --- */
.info-options {
    padding: 40px 0;
}

.info-options h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.blue-bullet-list {
    list-style: none; /* Remove o bullet padrão do HTML */
    padding: 0;
    margin: 0;
}

.blue-bullet-list > li {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column; /* Permite que o conteúdo e subopções fiquem em colunas */
    align-items: flex-start; /* Alinha o conteúdo à esquerda */
}

.blue-bullet-list .option-content {
    display: flex;
    align-items: flex-start; /* Alinha a bola com o início do texto */
    margin-bottom: 10px; /* Espaço entre o título da opção e o texto descritivo */
}

.blue-bullet-list .bullet-point {
    width: 12px; /* Tamanho da "bola" */
    height: 12px; /* Tamanho da "bola" */
    background-color: #eb6512; /* Cor azul da bola (pode ajustar) */
    border-radius: 50%; /* Faz com que seja um círculo perfeito */
    margin-right: 10px; /* Espaço entre a bola e o texto */
    flex-shrink: 0; /* Impede que a bola diminua em telas menores */
    margin-top: 5px; /* Ajusta a bola para alinhar melhor com o texto */
}

.blue-bullet-list p {
    margin: 0; /* Remove margens padrão de parágrafos dentro da lista */
    line-height: 1.6; /* Melhora a legibilidade */
    color: #777777; /* Cor do texto cinza escuro, como você pediu antes */
    text-align: left; /* Mantém o texto justificado */
}

.blue-bullet-list .sub-option-text {
    margin-left: 22px; /* Alinha o texto da subopção com o início do texto principal */
    text-align: left;
}

/* Estilo para as sub-listas (a, b, c...) */
.blue-bullet-list li ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%; /* Garante que a sublista ocupe a largura total */
}

.blue-bullet-list li ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
}