/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

nav ul li a:hover {
    color: #f0a500; /* Cor de destaque ao passar o mouse */
}

main {
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 20px;
}

.hero {
    background: #f0a500; /* Cor de destaque principal */
    color: #333;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #555;
}

.services-overview, .why-us, .page-content, .form-section, .blog-posts {
    background: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.services-overview h2, .why-us h2, .page-content h2, .form-section h2, .blog-posts h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.service-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    text-align: center;
}

.service-card h3 {
    margin-bottom: 0.5rem;
    color: #f0a500;
}

.service-card a {
    color: #333;
    font-weight: bold;
}

.why-us ul {
    list-style: disc;
    margin-left: 20px;
}

.why-us ul li {
    margin-bottom: 0.5rem;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #333;
    color: #fff;
    margin-top: 2rem;
}

footer p {
    margin-bottom: 0.5rem;
}

footer a {
    color: #f0a500;
    text-decoration: none;
}

/* Estilos para formulário de contato */
.form-section label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-section input[type="text"],
.form-section input[type="email"],
.form-section textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-section textarea {
    min-height: 150px;
}

.form-section button[type="submit"] {
    display: inline-block;
    background: #f0a500;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-section button[type="submit"]:hover {
    background: #e09500;
}

/* Estilos para Blog */
.blog-post {
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.blog-post h3 {
    color: #f0a500;
    margin-bottom: 0.5rem;
}

.blog-post .post-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.blog-post .read-more {
    color: #333;
    font-weight: bold;
}

/* Responsividade */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        display: none; /* Esconder por padrão, mostrar com JS ou :target */
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .services-overview {
        display: flex;
        flex-direction: column;
    }
}

/* Estilos para página Sobre e Política de Privacidade */
.page-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 1rem;
}

.page-content p {
    margin-bottom: 1rem;
}

