/* ============================================
   MR-TEC DESENTUPIDORA - CSS PURO
   Responsivo para Desktop e Mobile
   ============================================ */

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



img {
    max-width: 100%;
    height: auto;
    display: block; /* Para remover o espaço extra abaixo das imagens */
}

html, body {
    overflow-x: hidden; /* Previne o scroll horizontal */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    /* max-width: 1280px; - Removido para largura total em mobile */
    margin: 0 auto;
    padding: 0 1rem; /* Mantido padding lateral para o conteúdo interno */
}

/* Adicionando max-width para telas maiores */
@media (min-width: 768px) {
    .container {
        max-width: 1280px;
        padding: 0 2rem;
    }
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.top-bar p {
    margin: 0;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

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

@media (max-width: 767px) {
    .header .container {
        padding: 1rem 1rem; /* Garante padding lateral em mobile */
    }
}

/* Desktop Header */
.header-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    height: 80px;
    width: auto;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    gap: 2rem;
    flex: 1;
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #dc2626;
}

/* Contact Info Desktop */
.contact-info-desktop {
    display: flex;
    align-items: center;
    gap: 1rem; /* Reduzido o gap para 1rem */
    flex-shrink: 0;
}

.contact-info-desktop a {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.contact-info-desktop a svg {
    width: 20px;
    height: 20px;
}

.contact-item-whatsapp {
    background-color: #25D366; /* Verde WhatsApp */
    color: white;
}

.contact-item-whatsapp:hover {
    background-color: #128C7E;
}

.contact-item-phone {
    background-color: #dc2626; /* Vermelho */
    color: white;
}

.contact-item-phone:hover {
    background-color: #b91c1c;
}

/* Estilos antigos removidos ou substituídos */
.contact-item, .contact-label, .contact-phone {
}

/* Mobile Header */
.header-mobile {
    display: none;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 468px) {
    .header-desktop {
        display: none;
    }

    .header-mobile {
        display: flex;
    }
}

.logo-mobile {
    height: 110px; /* Alterado conforme solicitação do usuário */
    width: auto;
    max-width: 200px;
}

@media (max-width: 480px) {
    .logo-mobile {
        height: 50px !important;
        max-width: 120px !important;
    }
}   max-width: 200px;
}

@media (max-width: 480px) {
    .logo-mobile {
        height: 50px !important;
        max-width: 120px !important;
    }
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon {
    width: 28px;
    height: 28px;
    color: #4b5563;
}

/* ============================================
   MOBILE SIDEBAR (OFF-CANVAS)
   ============================================ */

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px; /* Escondido fora da tela */
    width: 300px;
    max-width: 80%;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.mobile-sidebar.active {
    right: 0; /* Visível */
}

.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.mobile-sidebar-overlay.active {
    display: block;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #4b5563;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    flex-grow: 1;
    overflow-y: auto;
}

.nav-link-mobile {
    display: block;
    padding: 0.75rem 0;
    text-decoration: none;
    color: #4b5563;
    font-weight: 600;
    transition: color 0.3s ease;
    border-bottom: 1px solid #f3f4f6;
}

.nav-link-mobile:hover {
    color: #dc2626;
}

/* Dropdown */
.sidebar-dropdown {
    border-bottom: 1px solid #f3f4f6;
}

.dropdown-toggle {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 0.75rem 0;
    color: #4b5563;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-menu {
    display: none;
    flex-direction: column;
    padding-left: 1rem;
    padding-bottom: 0.5rem;
}

.dropdown-menu.active {
    display: flex;
}

.dropdown-link {
    padding: 0.5rem 0;
    text-decoration: none;
    color: #6b7280;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.dropdown-link:hover {
    color: #dc2626;
}

/* Contact Buttons */
.sidebar-contact {
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-btn-whatsapp,
.sidebar-btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    gap: 0.5rem;
    transition: opacity 0.3s ease;
}

.sidebar-btn-whatsapp {
    background-color: #22c55e;
    color: white;
}

.sidebar-btn-whatsapp:hover {
    opacity: 0.9;
}

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

.sidebar-btn-call:hover {
    opacity: 0.9;
}

.contact-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 0.5rem;
}

/* ============================================
   SERVICES SECTION WITH SUBMENUS
   ============================================ */

.services-section {
    background-color: #000;
    color: #fff;
    padding: 0;
}

/* Desktop Services */
.services-desktop {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.service-item {
    position: relative;
    flex: 1;
    display: flex;
    align-items: stretch;
}

.service-btn {
    background: none;
    border: none;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    padding: 1rem 0.5rem;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.service-btn:hover {
    background-color: #1f2937;
    color: #22c55e;
    border-bottom-color: #22c55e;
}

/* Submenu */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1f2937;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    z-index: 100;
}

.service-item:hover .submenu {
    display: flex;
}

.submenu-link {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #d1d5db;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #374151;
}

.submenu-link:hover {
    background-color: #dc2626;
    color: #fff;
}

.submenu-link:last-child {
    border-bottom: none;
}

/* Mobile Services */
.services-mobile {
    display: none;
    padding: 1rem 0;
}

.service-btn-mobile {
    width: 100%;
    background-color: #1f2937;
    color: #fff;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 9999px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.service-btn-mobile:hover {
    background-color: #374151;
}

.service-btn-mobile svg {
    width: 20px;
    height: 20px;
}

.mobile-services-list {
    display: none;
    flex-direction: column;
    margin-top: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.mobile-services-list.active {
    display: flex;
}

.mobile-service-item {
    border-bottom: 1px solid #374151;
}

.mobile-service-toggle {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 0;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.mobile-service-toggle:hover {
    color: #22c55e;
}

.mobile-submenu {
    display: none;
    flex-direction: column;
    background-color: #111827;
    padding: 0.5rem 0;
}

.mobile-submenu.active {
    display: flex;
}

.mobile-submenu.active {
    display: flex;
}

/* ============================================
   HERO SECTION WITH SLIDER
   ============================================ */

.hero-section-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section-slider {
        height: 500px;
    }
}

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
}

/* Slider Overlay */
.slider-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

/* Slider Content */
.slider-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 10;
}

.slider-content .container {
    text-align: center;
    width: 100%;
}

.slider-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .slider-title {
        font-size: 3.5rem;
    }
}

.slider-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .slider-subtitle {
        font-size: 2.5rem;
    }
}

/* Slider Buttons */
.slider-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .slider-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-whatsapp-slider,
.btn-call-slider {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    white-space: nowrap;
}

.btn-whatsapp-slider {
    background-color: #22c55e;
    color: #fff;
}

.btn-whatsapp-slider:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-call-slider {
    background-color: #dc2626;
    color: #fff;
}

.btn-call-slider:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.icon-whatsapp,
.icon-phone {
    width: 24px;
    height: 24px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #fff;
    width: 32px;
    border-radius: 6px;
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background-color: #fff;
    padding: 3rem 1rem;
}

/* Removendo a regra antiga de seo-content, que não existe mais */;
    max-width: 900px;
    margin: 0 auto;


.contact-box {
    padding: 2rem 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-box-whatsapp {
    background-color: #22c55e;
}

.contact-box-whatsapp:hover {
    background-color: #16a34a;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(34, 197, 94, 0.3);
}

.contact-box-call {
    background-color: #dc2626;
}

.contact-box-call:hover {
    background-color: #b91c1c;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3);
}

.box-label {
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.box-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.box-phone {
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .box-phone {
        font-size: 2rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    /* Header Mobile */
    .header-desktop {
        display: none;
    }

    .header-mobile {
        display: flex;
    }

    .header .container {
        padding: 1rem;
    }

    /* Services Mobile */
    .services-desktop {
        display: none;
    }

    .services-mobile {
        display: block;
    }

    /* Navigation Mobile */
    .nav-mobile {
        width: 100%;
    }

    /* Logo Mobile */
    .logo-mobile {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .slider-title {
        font-size: 1.75rem;
    }

    .slider-subtitle {
        font-size: 1.25rem;
    }

    .btn-whatsapp-slider,
    .btn-call-slider {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .box-phone {
        font-size: 1.25rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

a {
    transition: color 0.3s ease;
}

button {
    transition: all 0.3s ease;
}

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

/* ============================================
   SEO SECTION - NOVA SEÇÃO
   ============================================ */

.seo-section {
    padding: 4rem 0;
    background: #f9fafb; /* Fundo levemente diferente para destacar */
    border-top: 1px solid #e5e7eb;
    /* Correção de segurança para garantir que o conteúdo não vaze */
    overflow: hidden;
}

.seo-header {
    text-align: center;
    margin-bottom: 3rem;
}

.seo-header h2 {
    font-size: 2.2rem; /* Aumentado o tamanho do título principal */
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem; /* Aumentado o espaçamento */
}

.seo-header p {
    color: #4b5563; /* Cor mais escura para melhor contraste */
    font-size: 1.1rem; /* Aumentado o tamanho da fonte */
    line-height: 1.7; /* Aumentado o line-height para melhor leitura */
    max-width: 900px;
    margin: 0 auto;
}

.seo-blog-layout {
    display: flex;
    flex-direction: column; /* Força layout de coluna para simplificar */
    gap: 3rem; /* Aumenta o espaçamento entre os blocos */
    align-items: center;
}

/* O menu lateral será movido para o topo e estilizado como um índice */
.seo-sidebar {
    width: 100%;
    position: static; /* Remove o sticky */
    padding: 1.5rem;
    background: #f0f0f0; /* Fundo claro para destacar como índice */
    border-radius: .5rem;
    box-shadow: none;
    border: none;
    margin-bottom: 2rem;
    /* Correção para garantir que o menu lateral não cause overflow */
    box-sizing: border-box;
}

.seo-sidebar h3 {
    font-size: 1.2rem;
    color: #111827;
    margin-bottom: 1rem;
    border-bottom: 2px solid #dc2626;
    padding-bottom: 0.5rem;
    text-align: center;
}

.seo-nav {
    display: flex;
    flex-direction: row; /* Links lado a lado */
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem; /* Espaçamento maior entre os links */
}

.seo-nav-link {
    text-decoration: none;
    color: #dc2626; /* Cor de destaque */
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1.1rem; /* Fonte maior */
    font-weight: 600;
}

.seo-nav-link:hover {
    color: #b91c1c;
    border-bottom-color: #b91c1c;
    padding-left: 0; /* Remove o efeito de padding-left */
}

.seo-main-content {
    width: 100%;
    max-width: 900px; /* Limita a largura para melhor leitura */
    display: flex;
    flex-direction: column;
    gap: 3rem; /* Aumenta o espaçamento entre os tópicos */
}

.seo-topic {
    background: white;
    padding: 2rem; /* Aumentado o padding interno */
    border-radius: 0.75rem; /* Bordas mais arredondadas */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Sombra mais suave */
    border-left: 5px solid #dc2626; /* Borda lateral mais grossa */
}

/* Removendo a regra antiga de seo-content */
.seo-content {
    display: block;
}

.seo-topic {
    background: white;
    padding: 2rem; /* Aumentado o padding interno */
    border-radius: 0.75rem; /* Bordas mais arredondadas */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Sombra mais suave */
    border-left: 5px solid #dc2626; /* Borda lateral mais grossa */
}

.seo-topic h3 {
    font-size: 1.5rem; /* Aumentado o tamanho do subtítulo */
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem; /* Aumentado o espaçamento */
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb; /* Adicionado linha para separar */
}

.seo-topic p {
    font-size: 1.1rem; /* Aumentado para 17.6px */
    color: #374151;
    line-height: 1.9; /* Aumentado o line-height para máxima clareza */
    margin-bottom: 2rem; /* Aumentado o espaçamento */
}

.seo-topic ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.seo-topic ul li {
    font-size: 1.1rem; /* Aumentado o tamanho da fonte da lista */
    color: #374151;
    padding: 0.75rem 0; /* Aumentado o espaçamento vertical */
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.seo-topic ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

/* Responsividade */
@media (max-width: 768px) {
    .seo-section {
        padding: 2rem 0;
    }

    .seo-header h2 {
        font-size: 1.5rem;
    }

    .seo-blog-layout {
        flex-direction: column;
    }

    .seo-sidebar {
        position: static; /* Remove o sticky no mobile */
        width: 100%;
        flex: none;
        margin-bottom: 1.5rem;
    }

    .seo-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem 1rem;
    }

    .seo-nav-link {
        border-bottom: none;
        padding: 0.25rem 0;
    }
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.main-footer {
    background-color: #1f2937; /* Cor de fundo escura */
    color: #f3f4f6; /* Cor do texto claro */
    padding-top: 3rem;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #374151;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #dc2626; /* Linha de destaque */
    display: inline-block;
    padding-bottom: 0.5rem;
}

/* Coluna de Contato */
.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1); /* Deixa o logo branco para fundo escuro */
}

.footer-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #9ca3af;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.contact-item i {
    color: #dc2626;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: #f3f4f6;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #dc2626;
}

/* Links Rápidos e Serviços */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #dc2626;
}

/* Redes Sociais e Legal */
.social-icons {
    margin-bottom: 1.5rem;
}

.social-icons a {
    color: #f3f4f6;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #dc2626;
}

.legal-links a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #dc2626;
}

/* Sub-rodapé */
.footer-bottom {
    padding: 1rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Responsividade */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h3 {
        display: block;
        text-align: center;
        margin-bottom: 1rem;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-col ul {
        text-align: center;
    }

    .social-icons {
        text-align: center;
    }

    .social-icons a {
        margin: 0 0.5rem;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
  /* ============================================
           SERVIÇOS SECTION - NOVO LAYOUT
           ============================================ */

        .servicos-section {
            padding: 4rem 0; /* Removido padding lateral para largura total */
            background: #f5f5f5;
        }
        .servicos-section .container {
            padding: 0 1rem;
        }

        .servicos-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .servicos-subtitle {
            color: #dc2626;
            font-weight: 600;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }

        .servicos-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
        }

        .servicos-title::after {
            content: "SERVIÇOS";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            font-size: 5rem;
            font-weight: 200;
            color: rgba(0, 0, 0, 0.05);
            z-index: -1;
            white-space: nowrap;
            text-align: center;
        }

        @media (max-width: 768px) {
            .servicos-title::after {
                font-size: 2.5rem;
            }
        }

        .servicos-location {
            color: #6b7280;
            font-size: 1rem;
            margin-top: 0.5rem;
        }

        .servicos-location::before {
            content: "📍";
            margin-right: 0.5rem;
        }

        /* Grid de Serviços - 3 colunas */
        .servicos-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        @media (max-width: 1024px) {
            .servicos-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .servicos-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .servicos-title {
                font-size: 1.875rem;
            }
        }

        /* Card de Serviço */
        .servico-card {
            background: white;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .servico-card:hover {
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            transform: translateY(-4px);
        }

        .servico-imagem {
            position: relative;
            height: 220px;
            overflow: hidden;
            background-color: #e5e7eb;
        }

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

        .servico-card:hover .servico-imagem img {
            transform: scale(1.05);
        }

        .servico-conteudo {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .servico-titulo {
            font-size: 1.125rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 0.75rem;
        }

        .servico-descricao {
            color: #6b7280;
            font-size: 0.875rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            flex-grow: 1;
        }

        .servico-botao {
            background-color: #dc2626;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 2rem;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
            margin-top: auto;
        }

        .servico-botao:hover {
            background-color: #b91c1c;
            transform: translateX(4px);
        }

        /* ============================================
           SEÇÃO SOLUÇÕES ECOLÓGICAS
           ============================================ */

        .solucoes-section {
            padding: 4rem 0; /* Removido padding lateral para largura total */
            background: white;
        }
        .solucoes-section .container {
            padding: 0 1rem;
        }

        .solucoes-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .solucoes-title {
            font-size: 2rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 1rem;
        }

        .solucoes-descricao {
            color: #6b7280;
            font-size: 0.95rem;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }

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

        @media (max-width: 768px) {
            .solucoes-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .solucoes-blocos {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .solucoes-bloco {
            background: #f5f5f5;
            padding: 1.5rem;
            border-radius: 0.5rem;
            border-left: 4px solid #dc2626;
        }

        .solucoes-bloco h3 {
            font-size: 1.125rem;
            font-weight: 700;
            color: white;
            background: #dc2626;
            padding: 0.75rem 1rem;
            margin: -1.5rem -1.5rem 1rem -1.5rem;
            border-radius: 0.5rem 0.5rem 0 0;
        }

        .solucoes-bloco p {
            color: #6b7280;
            font-size: 0.875rem;
            line-height: 1.6;
        }

        .solucoes-imagem {
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .solucoes-imagem img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* ============================================
           SEÇÃO INFORMATIVA - ALTERNADA
           ============================================ */

        .info-section {
            padding: 4rem 0; /* Removido padding lateral para largura total */
            background: white;
            border-top: 1px solid #e5e7eb;
        }
        .info-section .container {
            padding: 0 1rem;
        }

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

        .info-content.reverse {
            direction: rtl;
        }

        .info-content.reverse > * {
            direction: ltr;
        }

        @media (max-width: 768px) {
            .info-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .info-content.reverse {
                direction: ltr;
            }
        }

        .info-texto {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .info-titulo {
            font-size: 1.75rem;
            font-weight: 700;
            color: #111827;
            border-left: 4px solid #dc2626;
            padding-left: 1rem;
        }

        .info-descricao {
            color: #6b7280;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .info-lista {
            list-style: none;
            padding: 0;
            margin: 1rem 0;
        }

        .info-lista li {
            color: #6b7280;
            font-size: 0.875rem;
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }

        .info-lista li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #dc2626;
            font-weight: bold;
        }

        .info-imagem {
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .info-imagem img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Slider de Equipamentos */
        .equipamentos-section {
            padding: 2rem 0; /* Removido padding lateral para largura total */
            background: #f5f5f5;
            border-top: 1px solid #e5e7eb;
        }
        .equipamentos-section .container {
            padding: 0 1rem;
        }

        .equipamentos-header {
            text-align: left;
            margin-bottom: 2rem;
            padding-left: 1rem;
            border-left: 4px solid #dc2626;
        }

        .equipamentos-header h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #111827;
        }

        .equipamentos-slider {
            position: relative;
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 1rem;
            margin: 0 -1rem;
        }

        @media (max-width: 768px) {
            .equipamentos-slider {
                padding: 1rem 0.5rem;
                margin: 0 -0.5rem;
            }
        }

        .equipamentos-slider::-webkit-scrollbar {
            height: 8px;
        }

        .equipamentos-slider::-webkit-scrollbar-track {
            background: #e5e7eb;
            border-radius: 10px;
        }

        .equipamentos-slider::-webkit-scrollbar-thumb {
            background: #dc2626;
            border-radius: 10px;
        }

        .equipamento-item {
            flex: 0 0 200px;
            background: white;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .equipamento-item:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transform: translateY(-2px);
        }

        .equipamento-imagem {
            width: 100%;
            height: 150px;
            overflow: hidden;
            background: #e5e7eb;
        }

        .equipamento-imagem img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .equipamento-nome {
            padding: 1rem;
            text-align: center;
            font-weight: 600;
            color: #111827;
            font-size: 0.875rem;
        }

        /* CTA Final */
        .cta-final {
            text-align: center;
            padding: 2.5rem;
            background-color: white;
            border-radius: 1rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            margin-top: 3rem;
        }

        .cta-texto {
            color: #6b7280;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .cta-botoes {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-whatsapp-final,
        .btn-ligar-final {
            padding: 0.875rem 2rem;
            border: none;
            border-radius: 2rem;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .btn-whatsapp-final {
            background-color: #22c55e;
            color: white;
        }

        .btn-whatsapp-final:hover {
            background-color: #16a34a;
            transform: translateY(-2px);
        }

        .btn-ligar-final {
            background-color: white;
            color: #dc2626;
            border: 2px solid #dc2626;
        }

        .btn-ligar-final:hover {
            background-color: #fef2f2;
            transform: translateY(-2px);
        }

        @media (max-width: 480px) {
            .cta-botoes {
                flex-direction: column;
            }

            .btn-whatsapp-final,
            .btn-ligar-final {
                width: 100%;
                justify-content: center;
            }
        }

        /* ============================================
           SEÇÃO VASO SANITÁRIO
           ============================================ */

        .vaso-section {
            padding: 4rem 1rem;
            background: white;
            border-top: 1px solid #e5e7eb;
        }

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

        @media (max-width: 768px) {
            .vaso-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .vaso-texto {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .vaso-titulo {
            font-size: 2rem;
            font-weight: 700;
            color: #111827;
            border-left: 4px solid #dc2626;
            padding-left: 1rem;
        }

        .vaso-descricao {
            color: #6b7280;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .vaso-imagem {
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .vaso-imagem img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Ícones de Serviços Relacionados */
        .vaso-servicos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #e5e7eb;
        }

        .vaso-servico-item {
            text-align: center;
            padding: 1.5rem;
            background: #f5f5f5;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .vaso-servico-item:hover {
            background: #dc2626;
            color: white;
            transform: translateY(-4px);
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
        }

        .vaso-servico-icon {
            width: 40px;
            height: 40px;
            margin: 0 auto 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f59e0b;
        }

        .vaso-servico-icon svg {
            width: 100%;
            height: 100%;
            stroke: #f59e0b;
        }

        .vaso-servico-tab.active .vaso-servico-icon svg {
            stroke: #1e3a8a;
        }

        .vaso-servico-nome {
            font-weight: 600;
            font-size: 0.875rem;
            color: inherit;
        }

        /* Botão de Telefone Destacado */
        .vaso-cta {
            background: #dc2626;
            color: white;
            padding: 1.5rem;
            border-radius: 0.5rem;
            text-align: center;
            margin-top: 2rem;
        }

        .vaso-cta-texto {
            font-size: 1rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .vaso-cta-botao {
            background: white;
            color: #dc2626;
            border: none;
            padding: 1rem 2rem;
            border-radius: 2rem;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
        }

        .vaso-cta-botao:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .vaso-cta-botao svg {
            width: 24px;
            height: 24px;
        }

        /* Tabs Interativos */
        .vaso-servicos-tabs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid #e5e7eb;
        }

        .vaso-servico-tab {
            text-align: center;
            padding: 1.25rem;
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .vaso-servico-tab:hover {
            border-color: #dc2626;
            background: #fef2f2;
            transform: translateY(-2px);
        }

        .vaso-servico-tab.active {
            background: #dc2626;
            border-color: #dc2626;
            color: white;
        }

        .vaso-servico-tab .vaso-servico-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .vaso-servico-tab .vaso-servico-nome {
            font-weight: 600;
            font-size: 0.8rem;
            line-height: 1.3;
            color: inherit;
        }

        /* SECAO SOBRE NOS */
        .sobre-section {
            padding: 4rem 1rem;
            background: white;
            border-top: 1px solid #e5e7eb;
        }

        .sobre-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .sobre-icon {
            font-size: 1.5rem;
            color: #dc2626;
        }

        .sobre-label {
            color: #dc2626;
            font-weight: 600;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

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

        @media (max-width: 768px) {
            .sobre-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .sobre-imagem {
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .sobre-imagem img {
            width: 100%;
            height: auto;
            display: block;
        }

        .sobre-texto {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .sobre-titulo {
            font-size: 2.25rem;
            font-weight: 700;
            color: #111827;
            line-height: 1.3;
        }

        .sobre-descricao {
            color: #6b7280;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .sobre-qualidades {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .qualidade-item {
            display: flex;
            gap: 1rem;
            padding: 1.25rem;
            background: #f9fafb;
            border-radius: 0.5rem;
            border-left: 4px solid #dc2626;
        }
        .qualidade-icon {
            width: 40px;
            height: 40px;
            margin-right: 1rem;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f59e0b;
        }

        .qualidade-icon svg {
            width: 100%;
            height: 100%;
            stroke: #f59e0b;
        }

        .qualidade-conteudo {
            flex: 1;
        }

        .qualidade-titulo {
            font-weight: 700;
            color: #111827;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .qualidade-descricao {
            color: #6b7280;
            font-size: 0.875rem;
            line-height: 1.5;
        }

        .sobre-botao {
            background: #fbbf24;
            color: #111827;
            border: none;
            padding: 0.875rem 2rem;
            border-radius: 2rem;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .sobre-botao:hover {
            background: #f59e0b;
            transform: translateX(4px);
        }

        /* ============================================
           SEÇÃO ORÇAMENTO
           ============================================ */

        .orcamento-section {
            padding: 4rem 0; /* Removido padding lateral para largura total */
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
            color: white;
        }
        .orcamento-section .container {
            padding: 0 1rem;
        }

        .orcamento-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .orcamento-subtitle {
            color: #fbbf24;
            font-weight: 600;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }

        .orcamento-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .orcamento-descricao {
            color: #e5e7eb;
            font-size: 0.95rem;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }

        .orcamento-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (max-width: 1024px) {
            .orcamento-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .orcamento-cards {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .orcamento-title {
                font-size: 1.875rem;
            }
        }

        .orcamento-card {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .orcamento-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .orcamento-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f59e0b;
        }

        .orcamento-icon svg {
            width: 100%;
            height: 100%;
            stroke: #f59e0b;
        }

        .orcamento-card-titulo {
            font-size: 1.125rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .orcamento-card-descricao {
            color: #6b7280;
            font-size: 0.875rem;
            line-height: 1.6;
        }

        /* ============================================
           SECAO FAQ
           ============================================ */

        .faq-section {
            padding: 4rem 0; /* Removido padding lateral para largura total */
            background: #f9fafb;
        }
        .faq-section .container {
            padding: 0 1rem;
        }

        .faq-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 3rem;
            align-items: start;
        }

        @media (max-width: 1024px) {
            .faq-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .faq-header {
            padding-right: 2rem;
        }

        @media (max-width: 1024px) {
            .faq-header {
                padding-right: 0;
            }
        }

        .faq-subtitle {
            color: #f59e0b;
            font-weight: 600;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
            display: inline-block;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f59e0b;
        }

        .faq-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: #1e3a8a;
            margin: 1rem 0 1.5rem 0;
            line-height: 1.3;
        }

        .faq-intro {
            color: #6b7280;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .faq-items {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            overflow: hidden;
            background: white;
        }

        .faq-question {
            padding: 1.5rem;
            background: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            border-bottom: 1px solid #e5e7eb;
        }

        .faq-question:hover {
            background: #f3f4f6;
        }

        .faq-question-text {
            font-weight: 600;
            color: #1e3a8a;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .faq-icon {
            font-size: 1.5rem;
            color: #f59e0b;
            font-weight: bold;
            transition: transform 0.3s ease;
            min-width: 30px;
            text-align: right;
        }

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

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: white;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer p {
            padding: 1.5rem;
            color: #6b7280;
            font-size: 0.9rem;
            line-height: 1.7;
            margin: 0;
        }

        /* ============================================
           SECAO CONTEUDO DETALHADO
           ============================================ */

        .conteudo-detalhado-section {
            padding: 4rem 0; /* Removido padding lateral para largura total */
            background: white;
        }
        .conteudo-detalhado-section .container {
            padding: 0 1rem;
        }

        .conteudo-detalhado-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            line-height: 1.7;
            color: #4b5563;
        }

        @media (max-width: 1024px) {
            .conteudo-detalhado-wrapper {
                grid-template-columns: 1fr;
            }
        }

        .conteudo-detalhado-main {
            grid-column: 1;
        }

        .conteudo-detalhado-sidebar {
            grid-column: 2;
            grid-row: 1;
        }

        @media (max-width: 1024px) {
            .conteudo-detalhado-sidebar {
                grid-column: 1;
                grid-row: auto;
            }
        }

        .conteudo-detalhado-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 1.5rem;
            border-bottom: 3px solid #f59e0b;
            padding-bottom: 0.5rem;
            display: inline-block;
        }

        .conteudo-detalhado-subtitle {
            font-size: 1.75rem;
            font-weight: 600;
            color: #1e3a8a;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }

        .conteudo-detalhado-content h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1e3a8a;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .conteudo-detalhado-content p {
            margin-bottom: 1.5rem;
        }

        .conteudo-detalhado-content ul {
            list-style: disc;
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
            padding-left: 0;
        }

        .conteudo-detalhado-main li {
            margin-bottom: 0.5rem;
        }

        /* ============================================
           SECAO SOSDESENTOPE (NOVO LAYOUT)
           ============================================ */

        .sos-section {
            padding: 4rem 0; /* Removido padding lateral para largura total */
            background: white;
        }
        .sos-section .container {
            padding: 0 1rem;
        }

        .sos-tag {
            color: #f59e0b;
            font-weight: 700;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .sos-section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 1rem;
        }

        .sos-section-description {
            color: #4b5563;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        /* HERO */
        .sos-hero-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: #f59e0b; /* Cor de fundo do lado esquerdo */
            margin-bottom: 4rem;
        }

        @media (max-width: 768px) {
            .sos-hero-wrapper {
                grid-template-columns: 1fr;
            }
        }

        .sos-hero-content {
            padding: 3rem;
            color: #1e3a8a;
        }

        .sos-hero-tag {
            color: #1e3a8a;
            font-weight: 700;
            font-size: 1rem;
            display: flex;
            align-items: center;
        }

        .sos-hero-tag svg {
            margin-right: 0.5rem;
            width: 1.25rem;
            height: 1.25rem;
        }

        .sos-hero-title {
            font-size: 2.5rem;
            font-weight: 900;
            color: #1e3a8a;
            margin: 1rem 0;
            line-height: 1.2;
        }

        .sos-hero-description {
            color: #1e3a8a;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .sos-hero-btn {
            display: inline-block;
            background: #dc2626; /* Cor do botão CTA */
            color: white;
            padding: 1rem 2rem;
            border-radius: 0.25rem;
            text-decoration: none;
            font-weight: 700;
            transition: background 0.3s ease;
        }

        .sos-hero-btn:hover {
            background: #b91c1c;
        }

        .sos-hero-image {
            overflow: hidden;
        }

        .sos-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* WHY CHOOSE */
        .sos-why-choose-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        @media (max-width: 768px) {
            .sos-why-choose-cards {
                grid-template-columns: 1fr;
            }
        }

        .sos-why-choose-card {
            padding: 1.5rem;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
        }

        .sos-why-choose-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 0.5rem;
        }

        .sos-why-choose-text {
            color: #4b5563;
            line-height: 1.6;
        }

        /* FEATURED SERVICES */
        .sos-featured-services {
            padding: 4rem 0;
        }

        .sos-service-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .sos-service-card {
            padding: 1.5rem;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            transition: box-shadow 0.3s ease;
        }

        .sos-service-card:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .sos-service-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 0.5rem;
        }

        .sos-service-text {
            color: #4b5563;
            line-height: 1.6;
        }

        /* QUALITIES */
        .sos-qualities {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            padding: 4rem 0;
            border-top: 1px solid #e5e7eb;
            border-bottom: 1px solid #e5e7eb;
            margin-bottom: 4rem;
        }

        .sos-quality-item {
            text-align: center;
        }

        .sos-quality-item svg {
            width: 2.5rem;
            height: 2.5rem;
            color: #f59e0b;
            margin-bottom: 0.5rem;
        }

        .sos-quality-title {
            font-size: 1rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 0.25rem;
        }

        .sos-quality-text {
            font-size: 0.875rem;
            color: #4b5563;
        }

        /* EMERGENCY */
        .sos-emergency {
            text-align: center;
            padding: 4rem 0;
        }

        .sos-emergency-cta {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e3a8a;
            margin: 1.5rem 0;
        }

        /* CHAMINÉ (HIDROJATEAMENTO) */
        .sos-chamine {
            padding: 4rem 0;
        }

        .sos-chamine-list {
            list-style: disc;
            margin-left: 1.5rem;
            color: #4b5563;
            line-height: 1.7;
        }

        .sos-chamine-list li {
            margin-bottom: 0.5rem;
        }

        /* CANALIZAÇÃO (SERVIÇOS RESIDENCIAIS) */
        .sos-canalizacao {
            padding: 4rem 0;
        }

        .sos-canalizacao-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .sos-canalizacao-card {
            padding: 1.5rem;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            text-align: center;
        }

        .sos-canalizacao-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 0.5rem;
        }

        .sos-canalizacao-text {
            color: #4b5563;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .sos-canalizacao-card a {
            color: #f59e0b;
            text-decoration: none;
            font-weight: 600;
        }

        .sos-canalizacao-card a:hover {
            text-decoration: underline;
        }

        /* Sidebar Styles */
        .sidebar-box {
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .sidebar-title {
            font-size: 1rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 0.75rem;
            border-bottom: 2px solid #f59e0b;
            padding-bottom: 0.5rem;
        }

        .sidebar-text {
            font-size: 0.875rem;
            color: #6b7280;
            margin-bottom: 1rem;
        }

        .sidebar-phone {
            font-size: 1.125rem;
            font-weight: 700;
            color: #f59e0b;
            margin: 0;
        }

        .sidebar-btn {
            display: inline-block;
            background: #f59e0b;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            transition: background 0.3s ease;
            text-align: center;
            width: 100%;
            box-sizing: border-box;
        }

        .sidebar-btn:hover {
            background: #dc2626;
        }

        .sidebar-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #e5e7eb;
            font-size: 0.875rem;
            color: #6b7280;
        }

        .sidebar-list li:last-child {
            border-bottom: none;
        }
/* ==========================================================================
   NOVOS ESTILOS PARA CONTEÚDO SEO E ÂNCORAS LATERAIS (MR-TEC)
   ========================================================================== */

.main-content-container {
    display: flex;
    gap: 30px;
    padding: 40px 0;
}

.page-content {
    flex: 3; /* Ocupa 3/4 do espaço */
    min-width: 0; /* Permite que o conteúdo se comprima */
}

.sidebar-anchors {
    flex: 1; /* Ocupa 1/4 do espaço */
    position: sticky;
    top: 100px; /* Ajuste para ficar abaixo do cabeçalho fixo */
    height: fit-content;
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f8f8;
    border: 1px solid #eee;
}

.sidebar-anchors h2 {
    font-size: 1.2em;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
}

.sidebar-anchors ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-anchors li {
    margin-bottom: 10px;
}

.sidebar-anchors a {
    text-decoration: none;
    color: #007bff;
    font-weight: 600;
    display: block;
    padding: 5px 0;
    transition: color 0.2s;
}

.sidebar-anchors a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Estilos para o Conteúdo Principal */
.page-title {
    font-size: 2.5em;
    color: #1a1a1a;
    margin-bottom: 20px;
    border-bottom: 3px solid #007bff;
    padding-bottom: 10px;
}

.section-title {
    font-size: 1.8em;
    color: #333;
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-content p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.page-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

.page-content li {
    margin-bottom: 8px;
}

/* Blocos de Conteúdo */
.content-block {
    padding: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #007bff;
    background-color: #f4f9ff;
    border-radius: 4px;
}

.content-block h3 {
    color: #007bff;
    margin-top: 0;
    font-size: 1.3em;
}

/* Tabelas de Comparação */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95em;
}

.comparison-table th, .comparison-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.comparison-table th {
    background-color: #007bff;
    color: white;
    font-weight: 700;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-table tr:hover {
    background-color: #f1f1f1;
}

/* Lista de Métodos/FAQ */
.method-list, .faq-item {
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.faq-item h4 {
    color: #333;
    font-size: 1.1em;
    margin-top: 0;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 5px;
}

/* Call to Action */
.call-to-action {
    text-align: center;
    font-size: 1.5em;
    font-weight: 700;
    color: #0056b3;
    padding: 30px;
    margin-top: 40px;
    border: 2px dashed #007bff;
    background-color: #e6f0ff;
    border-radius: 10px;
}

/* Estilos de Contato */
.contact-info-blocks {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-block {
    flex: 1;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    text-align: center;
}

.contact-block h3 {
    color: #007bff;
    font-size: 1.4em;
    margin-top: 0;
}

.phone-number, .whatsapp-number {
    font-size: 1.8em;
    font-weight: 700;
    color: #28a745; /* Cor do WhatsApp */
    margin: 10px 0;
}

.form-placeholder, .map-placeholder {
    border: 1px dashed #ccc;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    background-color: #fafafa;
}

.social-links a {
    font-size: 1.1em;
    margin-right: 15px;
    color: #007bff;
    text-decoration: none;
}

/* ==========================================================================
   MEDIA QUERIES (Responsividade)
   ========================================================================== */

@media (max-width: 1200px) {
    .main-content-container {
        flex-direction: column;
    }

    .sidebar-anchors {
        position: static; /* Remove o sticky em telas menores */
        width: 100%;
        order: -1; /* Coloca a navegação acima do conteúdo principal */
        margin-bottom: 20px;
    }

    .sidebar-anchors nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .sidebar-anchors h2 {
        width: 100%;
        text-align: center;
    }

    .sidebar-anchors ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .sidebar-anchors li {
        margin-bottom: 0;
    }

    .contact-info-blocks {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2em;
    }

    .section-title {
        font-size: 1.5em;
    }

    .call-to-action {
        font-size: 1.2em;
        padding: 20px;
    }
}
/* ============================================
   ESTILOS DA SEÇÃO DE BLOG
   Copie e cole no seu arquivo CSS principal
   ============================================ */

/* Blog Section */
.blog-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-color, #2c3e50);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color, #3498db);
    border-radius: 2px;
}

/* Grid de Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Card */
.blog-card {
    background: var(--white, #ffffff);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(135deg, var(--secondary-color, #3498db) 0%, #2980b9 100%);
    color: var(--white, #ffffff);
    padding: 20px;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

.card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-excerpt {
    color: var(--text-light, #7f8c8d);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

/* Botão */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    flex: 1;
}

.btn-primary {
    background-color: var(--secondary-color, #3498db);
    color: var(--white, #ffffff);
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--white, #ffffff);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    position: relative;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light, #7f8c8d);
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-color, #e74c3c);
}

.modal-title {
    color: var(--primary-color, #2c3e50);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.modal-body {
    color: var(--text-dark, #2c3e50);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Responsividade */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .modal-content {
        padding: 30px;
        width: 95%;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .card-header h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .blog-grid {
        gap: 15px;
    }

    .card-header {
        padding: 15px;
    }

    .card-body {
        padding: 15px;
    }

    .btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .modal-content {
        padding: 20px;
    }

    .modal-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .modal-body {
        font-size: 0.95rem;
    }
}