:root {
    --primary-color: #004a99;
    --secondary-color: #f8f9fa;
    --text-color: #333;
    --accent-color: #e63946;
    --border-color: #dee2e6;
    --max-width: 1000px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

header {
    background: var(--primary-color);
    color: white;
    padding: 1rem 0;
    border-bottom: 4px solid var(--accent-color);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-right: 15px;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 2rem 0;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1.2rem;
}

.card {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.faq-question {
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

footer {
    background: #222;
    color: #ccc;
    padding: 2rem 0;
    margin-top: 3rem;
    font-size: 0.9rem;
}

.breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: #666;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

table th, table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
}

table th {
    background: var(--secondary-color);
}

@media (max-width: 600px) {
    nav {
        flex-direction: column;
        text-align: center;
    }
    nav a {
        margin: 5px 0;
    }
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

@media (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

/* Estilos da Logo no Header */
.header-logo {
    height: 60px; /* Altura ideal para a logo no header */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-link:hover .header-logo {
    transform: scale(1.05);
}

header .container {
    padding: 0.5rem 20px; /* Reduzir padding para acomodar a logo melhor */
}

@media (max-width: 600px) {
    .header-logo {
        height: 50px;
        margin-bottom: 10px;
    }
}
