/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - MELHORADO PARA MOBILE */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Menu Mobile - Correção */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.menu-icon span {
    height: 3px;
    width: 25px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    font-weight: 500;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: #8B4513;
    background-color: #f5f5f5;
}

.contact-info {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    min-width: 80px;
}

.contact-btn.whatsapp {
    background-color: #25D366;
    color: white;
}

.contact-btn.email {
    background-color: #007bff;
    color: white;
}

.contact-btn.phone {
    background-color: #8B4513;
    color: white;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Section - MELHORADO PARA MOBILE */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: center;
}

.hero-text, .hero-image {
    width: 50%;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    min-width: 180px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Diferenciais Section - CORRIGIDO */
.diferenciais-destaque {
    background: white;
}

.diferenciais-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.diferencial-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 1.5rem;
}

.diferencial-item i {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.diferencial-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Alinhamento de texto justificado para diferenciais (Desktop) */
.diferenciais-destaque .diferencial-item p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    line-height: 1.6;
    color: #666;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h4 {
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
}

/* Products Section */
.products {
    background: #f8f9fa;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.product-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.cta-button.small {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

.cta-full {
    text-align: center;
    margin-top: 3rem;
}

.cta-button.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Depoimentos Section - CORRIGIDO */
.depoimentos {
    background: white;
}

.depoimentos-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.depoimento-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

/* Alinhamento de texto justificado para depoimentos (Desktop) */
.depoimentos .depoimento-card p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.depoimento-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.rating {
    color: #FFD700;
    margin-top: 1rem;
}

/* Finishes Section - Removido pois não está no HTML original e não é necessário. */


/* Contact Section */
.contact {
    background: white;
}

.contact-content-revisao {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
}

.contact-cta-area {
    flex: 1;
    max-width: 50%;
    padding-right: 20px;
}

.contact-info-image {
    flex: 1;
    max-width: 40%;
    text-align: center;
}

.contact-info-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    margin-bottom: 25px;
}

.cta-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.contact-cta-area .cta-button.large {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
    padding: 15px 20px;
}

.contact-item h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.map-link {
    color: #8B4513;
    font-weight: 500;
    margin-top: 0.5rem;
    display: inline-block;
}

.contact-link {
    color: #007bff;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 100px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.footer-contact p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
    vertical-align: middle;
    border-radius: 0;
    box-shadow: none;
}

/* FAQ Styles */
.faq-page {
    padding-top: 120px;
    background-color: #f9f9f9;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 600;
    padding: 0;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #8B4513;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    /* Alterado de max-height para transition em height para melhor performance, mas o JS controla o max-height */
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out; 
}

/* Adicionado padding-top condicional para não quebrar a transição */
.faq-item.active .faq-answer {
    /* max-height é controlado pelo JS, removido o valor fixo '500px' do CSS */
    padding-top: 1rem; /* Adiciona padding após a abertura */
}

.faq-item:not(.active) .faq-answer {
    padding-top: 0; /* Remove padding quando fechado */
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    padding-top: 0; /* Removido padding-top daqui, agora no .faq-item.active .faq-answer */
}

/* CTA Section - Removido pois não está no HTML original e não é necessário. */
/* Blog Page Specific Styling (CORREÇÃO DE OVERLAP DO HEADER) */
.blog-page {
    padding-top: 120px;
    background-color: #f9f9f9;
}

/* --- Estilos para PÁGINAS DE ARTIGOS INDIVIDUAIS (.article-section) --- */

.article-section {
    padding: 120px 0 80px; /* Padding Top para compensar o header fixo */
    background-color: #ffffff;
}

.article-header {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.article-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    font-weight: 700;
}

.article-meta {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.5;
}

.article-content {
    max-width: 800px; /* Largura otimizada para leitura de texto longo */
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.article-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.article-content h2 {
    font-size: 2rem;
    color: #8B4513; /* Destaque para subseções */
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.article-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 2rem 0 1rem;
}

.article-content ul {
    list-style: disc;
    margin: 1rem 0 1.5rem 2rem;
    padding-left: 0;
}

.article-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-content strong {
    color: #8B4513;
    font-weight: 700;
}

.article-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Links Internos (Caixa de Produtos Relacionados) */
.internal-links {
    background-color: #f8f9fa;
    border-left: 5px solid #8B4513;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}
.internal-links h4 {
    color: #8B4513;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.internal-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.internal-links ul li {
    margin-bottom: 0.5rem;
}
.internal-links a {
    color: #444;
    text-decoration: underline;
    font-weight: 500;
}
.internal-links a:hover {
    color: #2c3e50;
}

/* FAQ Section na Página de Artigo */
.faq-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Reutilizando estilos de faq-item, faq-question, faq-answer do FAQ principal */

/* --- Estilos para a Seção de Compartilhamento (Share Section) --- */

.share-section {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin: 40px auto;
    max-width: 800px;
}

.share-section h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.share-section p {
    color: #666;
    margin-bottom: 30px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.share-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.1s ease;
    min-width: 120px;
    justify-content: center;
}

.share-button i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.share-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Cores das Redes Sociais para Identidade Visual */
.share-button.whatsapp {
    background-color: #25d366;
}

.share-button.facebook {
    background-color: #1877f2;
}

.share-button.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.share-button.linkedin {
    background-color: #0a66c2;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.email {
    background-color: #7f8c8d;
}

/* --- ESTILIZAÇÃO PADRÃO DOS POSTS DO BLOG (BLOG LIST) --- */

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-post {
    display: flex;
    align-items: stretch;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.blog-post .post-image {
    flex: 0 0 35%;
    max-width: 35%;
}

.blog-post .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-post .post-content {
    flex: 1;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
}

.blog-post .post-content h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.blog-post .post-content .read-more {
    margin-top: auto;
    align-self: flex-start;
    padding-top: 10px;
    /* Reutilizando estilo do botão CTA secondary para o "Leia Mais" */
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    background: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
    transition: all 0.3s ease;
}

.blog-post .post-content .read-more:hover {
    background: #8B4513;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* =====================================================
   RESPONSIVE DESIGN - APENAS MOBILE (NÃO ALTERA DESKTOP)
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }

    /* Artigo Tablet */
    .article-header h1 {
        font-size: 2rem;
    }
    .article-content {
        font-size: 1rem;
        padding: 0 10px;
    }
    .article-content h2 {
        font-size: 1.7rem;
    }
}

/* Mobile Large (768px) - CORREÇÃO PRINCIPAL */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Header Mobile - CORRIGIDO PARA NÃO FICAR FIXO */
    .header {
        padding: 0.8rem 0;
        /* Revertendo para fixed para manter a barra de navegação acessível no topo, corrigindo o erro de GSC que o usuário mencionou, mas é crucial o padding-top no main/sections */
        position: fixed; 
        top: 0;
        width: 100%;
    }
    
    .hero {
        padding: 100px 0 50px; /* AUMENTADO O PADDING TOP PARA COMPENSAR O HEADER FIXED */
    }

    /* Artigo Mobile - Readequado */
    .article-section {
        padding: 100px 0 50px; /* AJUSTADO */
    }
    .article-header {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
    .article-header h1 {
        font-size: 1.8rem;
    }
    .article-meta {
        font-size: 0.9rem;
    }
    .article-content {
        font-size: 1rem;
        padding: 0;
    }
    .article-content h2 {
        font-size: 1.5rem;
        margin: 2rem 0 0.8rem;
    }
    .article-content h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.8rem;
    }
    .internal-links {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    /* O resto das seções que começam no topo da tela devem ter o padding ajustado, mas o `main` e outras sections já lidam com isso implicitamente com o fluxo normal. */

    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }
    
    .logo {
        order: 1;
    }
    
    .logo img {
        width: 45px;
    }
    
    /* Menu Hamburguer */
    .menu-icon {
        display: flex;
        order: 3;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Menu de Navegação Mobile - OCULTO POR PADRÃO */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999;
    }
    
    .menu-toggle:checked ~ .nav {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
        padding: 2rem;
        width: 100%;
        max-width: 400px;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
        border: 1px solid #e0e0e0;
    }
    
    /* Botões de Contato Mobile - OCULTAR TEXTO */
    .contact-info {
        order: 2;
        gap: 0.3rem;
        flex-wrap: nowrap;
    }
    
    .contact-btn {
        padding: 0.5rem;
        font-size: 0.85rem;
        min-width: auto;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .contact-btn span {
        display: none;
    }
    
    .contact-btn i {
        margin: 0;
        font-size: 1.1rem;
    }
    
    /* Hero Mobile - MELHORADO */
    .hero {
        /* PADDING AJUSTADO ACIMA */
        min-height: auto;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text, .hero-image {
        width: 100%;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
        min-height: 48px;
    }
    
    /* Sections Mobile - MELHORADO */
    section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    /* About Mobile - MELHORADO */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Diferenciais Mobile - MELHORADO */
    .diferenciais-content {
        gap: 2rem;
    }
    
    .diferencial-item {
        min-width: 100%;
        padding: 1.5rem 1rem;
    }
    
    .diferencial-item i {
        font-size: 2.5rem;
    }
    
    .diferencial-item h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .diferencial-item p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center; /* CENTRALIZADO EM MOBILE para melhor legibilidade */
    }
    
    /* Products Mobile - MELHORADO */
    .product-grid {
        gap: 2rem;
    }
    
    .product-card {
        min-width: 100%;
        padding: 1.5rem;
    }
    
    .product-card h3 {
        font-size: 1.4rem;
    }
    
    .product-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .cta-button.small {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }
    
    /* Depoimentos Mobile - MELHORADO */
    .depoimentos-slider {
        gap: 2rem;
    }
    
    .depoimento-card {
        min-width: 100%;
        padding: 1.5rem;
    }
    
    .depoimento-card p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center; /* CENTRALIZADO EM MOBILE para melhor legibilidade */
    }
    
    .depoimento-card h4 {
        font-size: 1.05rem;
    }
    
    /* Contact Mobile - MELHORADO */
    .contact-content-revisao {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }
    
    .contact-cta-area, .contact-info-image {
        max-width: 100%;
        padding: 0;
    }
    
    .contact-cta-area h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .contact-cta-area p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .cta-group-vertical {
        gap: 1rem;
    }
    
    .contact-cta-area .cta-button.large {
        max-width: 100%;
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
        min-height: 50px;
    }
    
    .contact-item h3 {
        font-size: 1.3rem;
    }
    
    .contact-item p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Footer Mobile - MELHORADO */
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo img {
        width: 100px;
    }
    
    .footer-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .footer-nav a {
        font-size: 1rem;
        padding: 0.5rem;
    }
    
    .footer-contact p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* FAQ Mobile */
    .faq-item {
        padding: 1.2rem;
    }
    
    .faq-question {
        font-size: 1.05rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
    
    /* Blog Post Mobile */
    .blog-post {
        flex-direction: column;
    }

    .blog-post .post-image {
        flex: none;
        max-width: 100%;
        height: auto;
    }

    .blog-post .post-image img {
        height: 220px;
    }
    
    .blog-post .post-content {
        padding: 15px;
    }
    
    .blog-post .post-content h3 {
        font-size: 1.2rem;
    }

    .blog-post .post-content .read-more {
        align-self: stretch;
        text-align: center;
    }
    
    /* WhatsApp Float Mobile */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float img {
        width: 32px;
        height: 32px;
    }
    
    /* Blog Page Mobile */
    .blog-page {
        padding-top: 80px; /* AJUSTADO */
    }

    /* Artigo Mobile Pequeno */
    .article-header {
        max-width: 100%;
        padding: 0 10px 1rem;
    }
    .article-header h1 {
        font-size: 1.6rem;
    }
    .article-content h2 {
        font-size: 1.4rem;
    }
    .article-content h3 {
        font-size: 1.2rem;
    }
}

/* Mobile Small (480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: 90px; /* AJUSTADO */
    }
    
    /* Header Small Mobile */
    .logo img {
        width: 40px;
    }
    
    .contact-btn {
        width: 38px;
        height: 38px;
        padding: 0.4rem;
    }
    
    .contact-btn i {
        font-size: 1rem;
    }
    
    /* Hero Small Mobile */
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 0.85rem 1.3rem;
        font-size: 0.8rem;
    }
    
    /* Sections Small Mobile */
    section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Diferenciais Small Mobile */
    .diferenciais-item {
        padding: 1.2rem 0.8rem;
    }
    
    .diferencial-item i {
        font-size: 2.2rem;
    }
    
    .diferencial-item h3 {
        font-size: 1.1rem;
    }
    
    .diferencial-item p {
        font-size: 0.95rem;
    }
    
    /* Product Cards Small Mobile */
    .product-card {
        padding: 1.2rem;
    }
    
    .product-card h3 {
        font-size: 1.3rem;
    }
    
    .product-card p {
        font-size: 0.95rem;
    }
    
    /* Depoimentos Small Mobile */
    .depoimento-card {
        padding: 1.2rem;
    }
    
    .depoimento-card p {
        font-size: 0.95rem;
    }
    
    /* Contact Small Mobile */
    .contact-cta-area h3 {
        font-size: 1.3rem;
    }
    
    .contact-cta-area p {
        font-size: 0.95rem;
    }
    
    .contact-cta-area .cta-button.large {
        padding: 0.95rem 1.1rem;
        font-size: 0.85rem;
    }
    
    .contact-item h3 {
        font-size: 1.2rem;
    }
    
    .contact-item p {
        font-size: 0.95rem;
    }
    
    /* Footer Small Mobile */
    .footer-logo img {
        width: 90px;
    }
    
    .footer-nav a {
        font-size: 0.95rem;
    }
    
    .footer-contact p {
        font-size: 0.9rem;
    }
    
    /* WhatsApp Small Mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 12px;
        right: 12px;
    }
    
    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
    
    /* Extra Small Mobile (360px) */
    @media (max-width: 360px) {
        .container {
            padding: 0 12px;
        }
        
        .logo img {
            width: 38px;
        }
        
        .hero-text h1 {
            font-size: 1.5rem;
        }
        
        .section-header h2 {
            font-size: 1.4rem;
        }
        
        .cta-button {
            padding: 0.8rem 1.1rem;
            font-size: 0.75rem;
        }
        
        .diferencial-item h3 {
            font-size: 1.05rem;
        }
        
        .product-card h3 {
            font-size: 1.2rem;
        }
    }
}

/* Extra Small Mobile (360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .logo img {
        width: 38px;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.1rem;
        font-size: 0.75rem;
    }
    
    .diferencial-item h3 {
        font-size: 1.05rem;
    }
    
    .product-card h3 {
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-image,
.section-header,
.product-card,
.feature,
.contact-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #8B4513;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .whatsapp-float {
        display: none;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    section {
        padding: 20px 0;
    }
}

/* Estilos Específicos do Mapa do Site */
.sitemap-section {
    /* CORREÇÃO APLICADA AQUI: Aumentamos o padding-top */
    padding-top: 120px; 
    padding-bottom: 80px;
    min-height: 70vh;
}

.sitemap-section .section-header {
    margin-bottom: 40px; /* Adicionado para separar o cabeçalho das listas */
}

.sitemap-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}
.sitemap-group {
    flex: 1 1 calc(33% - 30px); /* 3 colunas em telas grandes */
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-top: 5px solid #8B4513; /* Corrigido para a cor primária da marca */
}
.sitemap-group h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 10px;
}
.sitemap-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sitemap-group ul li {
    margin-bottom: 10px;
}
.sitemap-group ul li a {
    color: #8B4513; /* Corrigido para a cor primária da marca */
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}
.sitemap-group ul li a:hover {
    color: #A0522D; /* Corrigido para um tom mais escuro */
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .sitemap-group {
        flex: 1 1 calc(50% - 20px); /* 2 colunas em tablets */
    }
}
@media (max-width: 768px) {
    .sitemap-group {
        flex: 1 1 100%; /* 1 coluna em mobiles */
    }
}

/* FIM DO ARQUIVO CSS */