* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
    padding-bottom: 70px; /* Espaço para acomodar o rodapé fixo */
}

.background-image {
    position: fixed;
    top: 0;
    left:  PY0;
    width: 100%;
    height: 100%;
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(4px);
    -webkit-filter: blur(5px);
    z-index: -1;
    opacity: 0.5;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
    background-color: rgba(74, 111, 165, 0.9);
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: blanchedalmond;
}

.search-container {
    margin-bottom: 30px;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 25px;
    outline: none;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
}

.search-container input:focus {
    border-color: #4a6fa5;
    box-shadow: 0 0 8px rgba(74, 111, 165, 0.4);
}

.search-container button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #4a6fa5;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.search-container button:hover {
    background-color: #3a5a8a;
}

.faq-list {
    list-style-type: none;
}

.faq-item {
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: none; /* Todos os itens iniciam ocultos */
}

.faq-item.visible {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-question {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #4a6fa5;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(249, 249, 249, 0.9);
}

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: rgba(249, 249, 249, 0.9);
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: max-content;
}

.highlight {
    background-color: #ffeb3b;
    display: inline; /* Garante que o destaque seja inline */
    padding: 0; /* Remove padding para evitar espaçamento extra */
    margin: 0; /* Remove margem para manter o fluxo do texto */
}

.no-result {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1rem;
    color: #fff;
    background-color: rgba(102, 102, 102, 0.8);
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.reset-button {
    display: none;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #4a6fa5;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reset-button:hover {
    background-color: #3a5a8a;
}

.search-icon {
    width: 24px;
    height: 24px;
}

p {
    text-indent: 30px; /* Indenta a primeira linha em 30 pixels */
}
  
li {
    /*margin-bottom: 10px;  Adiciona 10px de espaço abaixo de cada item */
    margin-left: 30px; /* Adiciona 20px de espaço à direita de cada item */
}

footer {
    background-color: rgba(74, 111, 165, 0.9);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.7rem;
    line-height: 1.5;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}
/* Estilo do botão WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 80px; /* Posicionado acima do rodapé */
    right: 20px;
    z-index: 99;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-button a:hover {
    background-color: #20b959;
    transform: scale(1.1);
}

.whatsapp-button svg {
    width: 30px;
    height: 30px;
}
/* Animação de pulso */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    footer {
        font-size: 0.8rem;
        padding: 10px 0;
    }
    
    body {
        padding-bottom: 60px; /* Ajustado para telas menores */
    }
}