.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ---- VARIÁVEIS E ESTILOS GERAIS ---- */
:root {
    --primary-color: #007BFF; /* Azul para confiança */
    --secondary-color: #28a745; /* Verde para sucesso/WhatsApp */
    --dark-color: #333;
    --light-color: #f4f4f4;
    --text-color: #555;
    --white-color: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    color: var(--dark-color);
    line-height: 1.2;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 40px; }
p { margin-bottom: 10px; }
a { text-decoration: none; }

/* ---- CABEÇALHO ---- */
.header {
    background-color: var(--white-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    color: var(--dark-color);
}

.nav-menu a {
    color: var(--dark-color);
    margin-left: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* ---- BOTÕES ---- */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin: 5px;
}

.btn-primary {
    background-color: #28a745;
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-outline {
    background-color: #cba722;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: red;
    color: var(--white-color);
}

.btn .icon {
    width: 20px;
    margin-right: 8px;
    vertical-align: middle;
}


/* ---- SEÇÃO HERO ---- */
.hero {
    background: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ---- SEÇÃO SERVIÇOS ---- */
.services {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white-color);
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ---- SEÇÃO WHY-US ---- */
.why-us {
    padding: 60px 0;
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-item {
    text-align: center;
}

.feature-item h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* ---- SEÇÃO DEPOIMENTOS ---- */
.testimonials {
    padding: 60px 0;
}

.testimonial-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-card cite {
    font-weight: 600;
    color: var(--dark-color);
}

/* ---- CTA FINAL E RODAPÉ ---- */
.final-cta {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 60px 0;
    text-align: center;
}

.final-cta h2, .final-cta p {
    color: var(--white-color);
}

.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    text-align: center;
    padding: 20px 0;
}

/* ---- RESPONSIVIDADE PARA DISPOSITIVOS MÓVEIS ---- */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .header .container {
        flex-direction: column;
    }

    .nav-menu {
        margin-top: 15px;
    }
    
    .nav-menu a {
        margin: 0 10px;
    }
    
    .hero-content .btn {
        display: block;
        margin-bottom: 10px;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Poppins:wght@600;700&display=swap');

:root {
    --primary-color: #0056b3; /* Azul escuro */
    --secondary-color: #007bff; /* Azul mais claro */
    --accent-color: #ffc107; /* Amarelo para destaque */
    --dark-color: #333;
    --light-color: #f8f9fa;
    --text-color: #555;
    --success-color: #28a745;
    --danger-color: #dc3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.8rem;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

header nav ul li a:hover {
    color: var(--secondary-color);
    background-color: var(--light-color);
}

main {
    display: block; /* Garante a semântica correta */
}

.hero {
    background: linear-gradient(#00b300bf, rgba(2, 150, 10, 0.01)), url('https://dedetizadoradmais.com/wp-content/uploads/2025/08/capa.png') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: #f8f9fa;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}
.cta-button i {
    margin-right: 10px;
}

.cta-button:hover {
    background-color: #218838;
    transform: scale(1.05);
}

section {
    padding: 60px 20px;
}

.services {
    background-color: var(--light-color);
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.service-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.why-clogs ul {
    list-style: none;
    margin-top: 20px;
    max-width: 800px;
    margin: 20px auto;
}
.why-clogs > p {
    text-align: center;
    max-width: 800px;
    margin: -20px auto 30px auto;
}

.why-clogs ul li {
    background: var(--light-color);
    margin-bottom: 10px;
    padding: 15px;
    border-left: 5px solid var(--secondary-color);
    display: flex;
    align-items: center;
    border-radius: 5px;
}

.why-clogs ul li i {
    color: var(--success-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.diy-risks {
    background: #fff5f5;
}

.diy-risks h2 {
    color: var(--danger-color);
}
.diy-risks > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.risk-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.risk-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border-top: 5px solid var(--danger-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.risk-card h4 {
    color: var(--danger-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.professional-solution {
    background: var(--light-color);
}

.professional-solution .intro-text {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.solution-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight-item {
    text-align: center;
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.highlight-item h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.cta-24h {
    background-color: var(--dark-color);
    text-align: center;
}

.cta-24h h2 {
    color: #fff;
}

.cta-24h p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cta-24h h3 a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.8rem;
    transition: color 0.3s ease;
}
.cta-24h h3 a:hover {
    color: #fff;
}
.cta-24h h3 a span {
    display: block;
    margin-top: 10px;
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
}

footer {
    background: #333;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
}

footer .container {
    padding: 10px;
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    header nav {
        margin-top: 15px;
    }
    .hero h2 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .cta-24h h3 a {
        font-size: 1.4rem;
    }
    .cta-24h h3 a span {
        font-size: 1.9rem;
    }
}/* End custom CSS */