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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.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;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: #2563eb;
    color: white;
}

.btn-call {
    background: #dc2626;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-call:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(59, 130, 246, 0.6));
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    color: white;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #fbbf24;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #dc2626;
    color: white;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #16a34a;
    color: white;
}

.btn-whatsapp:hover {
    background: #15803d;
    transform: translateY(-2px);
}

/* Visita Grátis Section */
.visita-gratis {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.visita-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.visita-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fbbf24;
}

.visita-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Formas de Pagamento */
.pagamento {
    padding: 4rem 0;
    background: #f8fafc;
}

.pagamento h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.pagamento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pagamento-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.pagamento-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

/* CTA Section */
.cta-section {
    background: #1e293b;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.cta-content h4 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #94a3b8;
}

/* Serviços Section */
.servicos {
    padding: 5rem 0;
    background: white;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
    text-transform: uppercase;
}

.section-header h3 {
    font-size: 1.3rem;
    color: #2563eb;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.servico-item {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.servico-item:hover {
    transform: translateY(-5px);
    border-color: #2563eb;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.servico-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.servico-icon i {
    font-size: 2rem;
    color: white;
}

.servico-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.servicos-extras {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #64748b;
}

/* Nossa Missão */
.missao {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 4rem 0;
    text-align: center;
}

.missao h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.missao p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
    color: #475569;
}

/* Blog Preview */
.blog-preview {
    padding: 5rem 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-item {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-category {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin: 1.5rem 1.5rem 1rem;
    border-radius: 20px;
}

.blog-item h4 {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.blog-item h4 a {
    text-decoration: none;
    color: #1e293b;
    font-size: 1.1rem;
    line-height: 1.4;
}

.blog-item h4 a:hover {
    color: #2563eb;
}

.blog-item p {
    padding: 0 1.5rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.blog-date {
    display: block;
    padding: 0 1.5rem 1.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Conteúdo SEO */
.conteudo-seo {
    padding: 5rem 0;
    background: #f8fafc;
}

.conteudo-seo h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.conteudo-seo h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2563eb;
}

.conteudo-seo h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    color: #475569;
}

.conteudo-seo p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    background: #16a34a;
    color: white;
    padding: 1rem;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.whatsapp-btn span {
    font-weight: 600;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e2e8f0;
    z-index: 1000;
}

.mobile-btn {
    flex: 1;
    padding: 1rem;
    text-decoration: none;
    color: white;
    text-align: center;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.mobile-call {
    background: #dc2626;
}

.mobile-whatsapp {
    background: #16a34a;
}

.mobile-btn i {
    font-size: 1.2rem;
}

.mobile-btn span {
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
    }
    
    .visita-content h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
    }
    
    .mobile-bottom-bar {
        display: flex;
    }
    
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .servico-item,
    .blog-item,
    .pagamento-item {
        padding: 1.5rem;
    }
}

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

.servico-item,
.blog-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


/* Estilos para página de regiões */
.hero-page {
    margin-top: 80px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero-page h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fbbf24;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-page p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.tecnicos-disponiveis {
    background: #1e293b;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.tecnicos-disponiveis h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.tecnicos-disponiveis h3 {
    font-size: 1.2rem;
    color: #94a3b8;
}

.regioes-grid-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.regioes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.regiao-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.regiao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.regiao-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #2563eb;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.cidades-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.cidades-list a {
    display: block;
    padding: 0.75rem 1rem;
    background: #f1f5f9;
    border-radius: 6px;
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.cidades-list a:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Responsive para regiões */
@media (max-width: 768px) {
    .hero-page h1 {
        font-size: 2rem;
    }
    
    .hero-page h2 {
        font-size: 2rem;
    }
    
    .regioes-grid {
        grid-template-columns: 1fr;
    }
    
    .regiao-card {
        padding: 1.5rem;
    }
    
    .cidades-list {
        grid-template-columns: 1fr;
    }
    
    .tecnicos-disponiveis h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-page {
        padding: 2rem 0;
    }
    
    .hero-page h1 {
        font-size: 1.5rem;
    }
    
    .hero-page h2 {
        font-size: 1.8rem;
    }
    
    .regiao-card {
        padding: 1rem;
    }
    
    .regiao-card h3 {
        font-size: 1.1rem;
    }
}


/* Estilos para páginas de cidades */
.hero-cidade {
    margin-top: 80px;
    background: linear-gradient(135deg, #1e293b, #475569);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-cidade h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero-cidade h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fbbf24;
    text-transform: uppercase;
    font-weight: 700;
}

.breadcrumb {
    background: #f8fafc;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #2563eb;
    text-decoration: none;
}

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

.breadcrumb-nav span {
    color: #64748b;
}

.servicos-cidade {
    padding: 5rem 0;
    background: white;
}

.servico-lista {
    list-style: none;
    margin-top: 1rem;
}

.servico-lista li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.servico-lista li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.emergencias-24h {
    background: #dc2626;
    color: white;
    padding: 4rem 0;
}

.emergencia-content {
    text-align: center;
}

.emergencia-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.emergencia-content > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.emergencias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.emergencia-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.emergencia-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.emergencia-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.emergencia-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-emergency {
    background: #fbbf24;
    color: #1e293b;
    font-size: 1.2rem;
    padding: 1.2rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-emergency:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

.conteudo-seo-cidade {
    padding: 5rem 0;
    background: #f8fafc;
}

.conteudo-seo-cidade h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.conteudo-seo-cidade h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2563eb;
}

.conteudo-seo-cidade h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    color: #475569;
}

.conteudo-seo-cidade p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
}

.regioes-atendidas-lista {
    list-style: none;
    margin: 1.5rem 0;
}

.regioes-atendidas-lista li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
}

.regioes-atendidas-lista li::before {
    content: '📍';
    position: absolute;
    left: 0;
}

.cta-orcamento {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-orcamento h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.cta-orcamento p {
    margin-bottom: 1.5rem;
    color: #64748b;
}

/* Responsive para páginas de cidades */
@media (max-width: 768px) {
    .hero-cidade h1 {
        font-size: 2rem;
    }
    
    .hero-cidade h2 {
        font-size: 1.5rem;
    }
    
    .emergencias-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .emergencia-content h2 {
        font-size: 2rem;
    }
    
    .btn-emergency {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-cidade {
        padding: 2rem 0;
    }
    
    .hero-cidade h1 {
        font-size: 1.5rem;
    }
    
    .hero-cidade h2 {
        font-size: 1.3rem;
    }
    
    .emergencias-grid {
        grid-template-columns: 1fr;
    }
    
    .emergencia-item {
        padding: 1.5rem;
    }
    
    .emergencia-item i {
        font-size: 2rem;
    }
    
    .cta-orcamento {
        padding: 1.5rem;
    }
}


/* Estilos para Blog */
.hero-blog {
    margin-top: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.hero-blog h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.blog-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.blog-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.post-image {
    height: 250px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 2rem;
}

.post-category {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.post-content h2 {
    margin-bottom: 1rem;
}

.post-content h2 a {
    color: #1e293b;
    text-decoration: none;
    font-size: 1.3rem;
    line-height: 1.4;
}

.post-content h2 a:hover {
    color: #2563eb;
}

.post-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.btn-read-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-read-more:hover {
    color: #1d4ed8;
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    text-transform: uppercase;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sidebar-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.sidebar-btn.whatsapp {
    background: #25d366;
}

.sidebar-btn.whatsapp:hover {
    background: #20ba5a;
}

.recent-posts {
    list-style: none;
}

.recent-posts li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.recent-posts li:last-child {
    border-bottom: none;
}

.recent-posts a {
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
}

.recent-posts a:hover {
    color: #2563eb;
}

.categories {
    list-style: none;
}

.categories li {
    padding: 0.5rem 0;
}

.categories a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.categories a:hover {
    color: #2563eb;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #2563eb;
    color: white;
}

/* Estilos para Artigos */
.hero-article {
    margin-top: 80px;
    background: linear-gradient(135deg, #1e293b, #475569);
    color: white;
    padding: 4rem 0;
}

.article-header h1 {
    font-size: 2.5rem;
    margin: 1rem 0;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 1rem;
}

.article-content {
    padding: 5rem 0;
    background: #f8fafc;
}

.article-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.article-body {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.article-image {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.article-text {
    line-height: 1.7;
    color: #374151;
}

.article-text .lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f3f4f6;
    border-left: 4px solid #2563eb;
    border-radius: 0 8px 8px 0;
}

.article-text h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin: 2.5rem 0 1rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.article-text h3 {
    font-size: 1.4rem;
    color: #2563eb;
    margin: 2rem 0 1rem;
}

.article-text h4 {
    font-size: 1.2rem;
    color: #475569;
    margin: 1.5rem 0 1rem;
}

.article-text p {
    margin-bottom: 1.5rem;
}

.article-text ul, .article-text ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

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

.article-text strong {
    color: #1e293b;
    font-weight: 600;
}

.article-cta {
    background: #2563eb;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.article-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.article-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.related-posts {
    list-style: none;
}

.related-posts li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.related-posts li:last-child {
    border-bottom: none;
}

.related-posts a {
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
}

.related-posts a:hover {
    color: #2563eb;
}

/* CTA Section */
.cta-section {
    background: #1e293b;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.cta-content h4 {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

/* Responsive para Blog */
@media (max-width: 1024px) {
    .blog-main,
    .article-main {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar,
    .article-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-blog h1,
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-body {
        padding: 2rem;
    }
    
    .article-text h2 {
        font-size: 1.5rem;
    }
    
    .post-content {
        padding: 1.5rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-blog h1,
    .article-header h1 {
        font-size: 1.5rem;
    }
    
    .article-body {
        padding: 1.5rem;
    }
    
    .article-text .lead {
        padding: 1rem;
    }
    
    .post-content {
        padding: 1rem;
    }
    
    .sidebar-widget {
        padding: 1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
}
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* quebra no celular */
}

.hero-image {
    flex: 1;
    max-width: 400px;
    margin-right: 20px; /* afastamento da direita */
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* opcional, canto arredondado */
}

/* No celular: imagem embaixo do texto */
@media (max-width: 768px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        margin: 20px 0 0 0; /* afasta em cima no mobile */
        max-width: 100%;
    }
}

