@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
}

/* Top Bar */
.top-bar {
    background-color: #1a2b48;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar p {
    font-weight: 500;
}

.contact-info a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
}

/* Main Navigation */
.main-nav {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 100px;
    position: relative;
    z-index: 100;
}

.logo img {
    width: 210px; /* Logo com 250px de largura conforme solicitado */
    height: auto;
    transition: width 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 18px;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #1a2b48;
}



/* CTA Button Header */
.btn-fale-conosco {
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0 30px;
    gap: 15px;
    height: 100px;
    transition: background-color 0.3s;
}

.btn-fale-conosco:hover {
    background-color: #cc0000;
}

.btn-fale-conosco i {
    font-size: 35px;
}

.btn-fale-conosco .text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.btn-fale-conosco .text span {
    font-size: 16px;
}

.btn-fale-conosco .text strong {
    font-size: 22px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background-image: url('img/desentupidora-de-vaso-sanitario.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 43, 72, 0.9), rgba(26, 43, 72, 0.4));
}

.hero .container {
    position: relative;
    z-index: 2;
    justify-content: flex-start;
}

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

.hero-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: none;
}

.hero-content p {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-buttons a {
    text-decoration: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
}

.hero-buttons a:hover {
    transform: translateY(-3px);
}

.btn-call {
    background-color: #ff0000;
    color: white;
    border: 2px solid #ff0000;
}

.btn-whatsapp {
    background-color: #007bff;
    color: white;
    border: 2px solid #007bff;
}

/* Mobile Menu */
.mobile-menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #1a2b48;
}

/* Responsividade */
@media (max-width: 1100px) {
    .nav-links {
        gap: 15px;
    }
    .nav-links a {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    .cta-button {
        display: none;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 40px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .logo img {
        height: 50px;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #fff;
}

.services .container {
    flex-direction: column;
    align-items: flex-start;
}

.services-header {
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 42px;
    color: #1a2b48;
    margin-bottom: 20px;
    font-weight: 800;
}

.services-header p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 1000px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    color: #1a2b48;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-service-whatsapp {
    background-color: #0056b3; /* Cor verde do WhatsApp */
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s;
    border-radius: 4px;
}

.btn-service-whatsapp:hover {
    background-color: #128c7e;
}

/* Responsividade para Serviços */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .services-header h2 {
        font-size: 32px;
    }
}

/* Trust Section */
.trust-section {
    padding: 40px 0;
    background-color: #f4f4f4;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.trust-box {
    background-color: white;
    border-radius: 50px;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 100%;
    overflow: hidden;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 5px;
}

.brand-blue {
    color: #0056b3;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
}

.trust-cards {
    display: flex;
    gap: 20px;
}

.trust-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-bottom: 4px solid #0056b3;
}

.icon-box {
    font-size: 30px;
    color: #0056b3;
}

.trust-card p {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.trust-image {
    flex: 0 0 300px;
    margin-bottom: -40px;
    margin-right: -20px;
}

.trust-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #0056b3;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s;
}

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

/* Responsividade Trust Section */
@media (max-width: 992px) {
    .trust-box {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }
    .trust-cards {
        flex-wrap: wrap;
        justify-content: center;
    }
    .trust-card {
        flex: 0 0 45%;
    }
    .trust-image {
        display: none;
    }
}

/* --- New Sections Styling --- */

/* General Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #1a2b48;
    margin-bottom: 10px;
    font-weight: 800;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.why-choose-us .container {
    flex-direction: column;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.choose-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

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

.icon-box-green {
    font-size: 40px;
    color: #0056b3;
    margin-bottom: 20px;
}

.choose-card h3 {
    font-size: 20px;
    color: #1a2b48;
    margin-bottom: 15px;
    font-weight: 700;
}

.choose-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials .container {
    flex-direction: column;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.testimonial-card {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #25d366;
}

.testimonial-card .stars {
    color: gold;
    margin-bottom: 15px;
}

.testimonial-card .stars i {
    font-size: 18px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.5;
}

.testimonial-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a2b48;
    text-align: right;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.faq .container {
    flex-direction: column;
}

.faq-list {
    max-width: 800px;
    width: 100%;
}

.faq-item {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.faq-question {
    font-size: 18px;
    color: #1a2b48;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}



/* Footer */
footer {
    background-color: #111;
    color: white;
    padding-top: 60px;
}

footer .container {
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-col h3 {
    font-size: 20px;
    color: #0056b3;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #aaa;
    margin-bottom: 15px;
}

.footer-col p a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col p a:hover {
    color: #0056b3;
}

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.social-links a {
    color: white;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #0056b3;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom .container {
    justify-content: center;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #777;
}

/* Responsiveness for New Sections */
@media (max-width: 992px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-final h2 {
        font-size: 32px;
    }
    .btn-whatsapp-large, .btn-call-large {
        display: block;
        margin: 15px auto;
    }
    footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-col {
        min-width: 100%;
    }
    .footer-col ul {
        padding: 0;
    }
}

@media (max-width: 600px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .section-header h2 {
        font-size: 28px;
    }
    .cta-final h2 {
        font-size: 28px;
    }
}

/* CTA Visual Section (Based on User Image) */
.cta-visual {
    padding: 50px 0;
    background-color: #f8f8f8; /* Fundo claro para contrastar */
}

.cta-visual .container {
    justify-content: center;
}

.cta-box {
    background-color: #333; /* Fundo escuro da caixa */
    border-radius: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.cta-image {
    flex: 0 0 50%; /* Imagem ocupa metade */
    position: relative;
    height: 300px;
    overflow: hidden;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Para simular o corte arredondado da imagem */
    -webkit-clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

.cta-content-visual {
    flex: 1;
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.cta-subtitle {
    font-size: 14px;
    color: #0056b3; /* Cor verde do WhatsApp */
    margin-bottom: 10px;
    font-weight: 600;
}

.cta-content-visual h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.btn-whatsapp-visual {
    background-color: #0056b3;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-whatsapp-visual:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

.cta-arrow-link {
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: white;
    font-size: 30px;
    text-decoration: none;
    transition: color 0.3s;
}

.cta-arrow-link:hover {
    color: #0056b3;
}

/* Responsividade para CTA Visual */
@media (max-width: 992px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
    }
    .cta-image {
        flex: 0 0 100%;
        height: 200px;
    }
    .cta-image img {
        -webkit-clip-path: none; /* Remove o corte em telas menores */
        clip-path: none; /* Remove o corte em telas menores */
    }
    .cta-content-visual {
        align-items: center;
        padding: 30px;
    }
    .cta-content-visual h2 {
        font-size: 28px;
    }
    .cta-arrow-link {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
}

/* Estilos para o Conteúdo SEO de 7k Palavras */
.seo-content-main {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
}

.seo-content-main h1, .seo-content-main h2, .seo-content-main h3 {
    color: #0056b3;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.seo-content-main p {
    margin-bottom: 1.2em;
    text-align: justify;
}

.seo-content-main ul, .seo-content-main ol {
    margin-bottom: 1.2em;
    padding-left: 2em;
}

.seo-content-main li {
    margin-bottom: 0.5em;
}

.seo-content-main table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

.seo-content-main th {
    background-color: #0056b3;
    color: white;
}

.seo-content-main blockquote {
    border-left: 5px solid #0056b3;
    padding: 10px 20px;
    margin: 20px 0;
    background: #f1f8f1;
    font-style: italic;
}
.video-section {
    padding: 0 16px;
    text-align: center;
}

/* Vídeo pequeno e responsivo */
.video-section video {
    width: 100%;       /* ocupa toda a largura disponível no mobile */
    max-width: 320px;  /* tamanho máximo do vídeo */
    height: auto;      /* mantém proporção */
    border-radius: 8px;
}

/* Ajuste para telas maiores */
@media (min-width: 768px) {
    .video-section video {
        max-width: 360px;  /* pequeno mesmo no desktop */
    }
}
/* Estilos Corrigidos - Seção Desentupidora */
.desentupidora-section {
    background-color: #2c2c2c; /* Cinza escuro da imagem */
    color: #ffffff;
    padding: 100px 20px 80px;
    position: relative;
    font-family: Arial, sans-serif; /* Fonte mais próxima da imagem */
}

/* Efeito de topo idêntico à imagem */
.desentupidora-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #f5f5f5; /* Cor do fundo de cima */
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

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

/* Cabeçalho */
.desentupidora-header {
    margin-bottom: 50px;
    max-width: 1100px;
}

.desentupidora-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.4;
    border-left: 5px solid #b32d2d;
    padding-left: 15px;
}

.desentupidora-title span {
    color: #e64d4d; /* Vermelho da imagem */
}

.desentupidora-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-top: 15px;
}

/* Grid de Cards - Desktop: 4 colunas fixas */
.desentupidora-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap; /* Garante que fiquem em linha no desktop */
}

/* Estilo do Card */
.desentupidora-card {
    background-color: #383838; /* Fundo levemente mais claro que a seção */
    padding: 40px 20px;
    border-radius: 5px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 350px;
}

/* Ícone Diamante */
.desentupidora-icon-box {
    margin-bottom: 30px;
}

.desentupidora-diamond {
    width: 55px;
    height: 55px;
    background-color: #b32d2d;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.desentupidora-diamond i {
    color: #ffffff;
    font-size: 22px;
    transform: rotate(-45deg);
}

.desentupidora-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.desentupidora-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #cccccc;
}

/* RESPONSIVIDADE */

/* Tablets (2 por linha) */
@media (max-width: 1024px) {
    .desentupidora-grid {
        flex-wrap: wrap;
    }
    .desentupidora-card {
        flex: 0 0 calc(50% - 10px);
        margin-bottom: 20px;
    }
}

/* Mobile (1 por linha) */
@media (max-width: 600px) {
    .desentupidora-section {
        padding: 80px 15px 40px;
    }
    
    .desentupidora-title {
        font-size: 19px;
    }
    
    .desentupidora-grid {
        flex-direction: column;
    }
    
    .desentupidora-card {
        flex: 1 1 auto;
        width: 100%;
        min-height: auto;
        padding: 30px 15px;
    }

    .desentupidora-header {
        text-align: center;
    }
    
    .desentupidora-title {
        border-left: none;
        border-bottom: 3px solid #b32d2d;
        padding-left: 0;
        padding-bottom: 10px;
    }
}
/* Estilos da Seção de Dicas (6 Colunas) */
.dicas-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.dicas-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Grid de 3 colunas no desktop (para caber 6 cards em 2 linhas) */
.dicas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Estilo do Card */
.dica-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

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

/* Imagem do Card */
.dica-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Conteúdo do Card */
.dica-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dica-title {
    color: #2e7d32; /* Cor verde/azulada similar à imagem */
    color: #007bff; /* Azul conforme solicitado/imagem */
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.dica-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 90%;
}

/* Botão WhatsApp */
.btn-whatsapp {
    background-color: #25d366;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    margin-top: auto; /* Empurra o botão para o final do card */
}

.btn-whatsapp:hover {
    background-color: #128c7e;
}

.btn-whatsapp i {
    font-size: 20px;
}

/* RESPONSIVIDADE */

/* Tablets (2 colunas) */
@media (max-width: 1024px) {
    .dicas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (1 coluna) */
@media (max-width: 650px) {
    .dicas-section {
        padding: 40px 15px;
    }
    
    .dicas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dica-image img {
        height: 200px;
    }
    
    .dica-title {
        font-size: 18px;
    }
}