/* ===================================
   RESET E BASE
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

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

/* ===================================
   VARIÁVEIS DE CORES
   =================================== */
:root {
    --primary-blue: #007bff;
    --secondary-green: #4CAF50;
    --dark-blue: #004d99;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --red-emergency: #ff0000;
    --red-phone: #dc3545;
}

/* ===================================
   BOTÕES
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

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

.btn-phone {
    background-color: var(--primary-blue);
    color: white;
    flex-direction: column;
    line-height: 1.2;
    font-size: 0.9em;
    padding: 8px 15px;
    gap: 2px;
}

.btn-phone .phone-number {
    font-size: 1.1em;
    font-weight: 700;
}

.btn-phone .phone-text {
    font-size: 0.7em;
    font-weight: 400;
    text-transform: none;
}

.btn-whatsapp {
    background-color: var(--secondary-green);
    color: white;
    flex-direction: column;
    line-height: 1.2;
    font-size: 0.9em;
    padding: 8px 15px;
    gap: 2px;
}

.btn-whatsapp .phone-number {
    font-size: 1.1em;
    font-weight: 700;
}

.btn-whatsapp .phone-text {
    font-size: 0.7em;
    font-weight: 400;
    text-transform: none;
}

.btn-whatsapp-hero {
    background-color: var(--secondary-green);
    color: white;
    font-size: 1.3em;
    padding: 15px 40px;
    border-radius: 50px;
    margin-top: 20px;
    font-weight: 700;
}

.btn-whatsapp-hero i {
    margin-right: 10px;
    font-size: 1.2em;
}

.btn-whatsapp-overlay {
    background-color: var(--secondary-green);
    color: white;
    font-size: 1em;
    padding: 12px 25px;
    border-radius: 50px;
    margin-top: 10px;
    font-weight: 700;
}

.btn-green-outline {
    background-color: white;
    color: var(--secondary-green);
    border: 2px solid var(--secondary-green);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1em;
    font-weight: 700;
}

.btn-green-outline i {
    margin-right: 8px;
}

.btn-green-outline:hover {
    background-color: var(--secondary-green);
    color: white;
}

.btn-green-small {
    background-color: var(--secondary-green);
    color: white;
    font-size: 0.85em;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
}

/* ===================================
   TOP BAR
   =================================== */
.top-bar {
    background-color: var(--dark-blue);
    color: white;
    font-size: 0.8em;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span,
.top-contact span {
    margin-right: 20px;
}

.top-info i,
.top-contact i {
    margin-right: 5px;
    color: var(--secondary-green);
}

/* ===================================
   HEADER
   =================================== */
.main-header {
    padding: 15px 0;
    background-color: white;
    border-bottom: 2px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo-section {
    display: flex;
    align-items: center;
}

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

.contact-buttons {
    display: flex;
    gap: 10px;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
}

.menu-close {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 2em;
    cursor: pointer;
    z-index: 1002;
}

/* Botão de Ligação Mobile */
.btn-phone-mobile {
    display: none;
    background-color: var(--primary-blue);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.btn-phone-mobile:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* ===================================
   NAVIGATION MENU
   =================================== */
.main-nav {
    display: block;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: var(--dark-gray);
    font-weight: 600;
    padding: 8px 15px;
    transition: all 0.3s ease;
    font-size: 0.9em;
    border-radius: 5px;
}

.main-nav a:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    background: linear-gradient(135deg, #004d99 0%, #002b5c 100%);
    color: white;
    padding: 100px 0;
    position: relative;
}

.hero-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 2.8em;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content h2 {
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.05em;
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===================================
   SEÇÃO: CONTROLE DE PRAGAS SP
   =================================== */
.pragas-sp-section {
    padding: 60px 0;
    background-color: white;
}

.pragas-sp-section .container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.pragas-sp-section .image-box {
    position: relative;
    flex: 1;
}

.pragas-sp-section .image-box img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pragas-sp-section .overlay-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.pragas-sp-section .overlay-box strong {
    display: block;
    font-size: 1em;
    margin-bottom: 15px;
    line-height: 1.3;
}

.pragas-sp-section .text-content {
    flex: 1;
}

.pragas-sp-section .text-content h2 {
    color: var(--primary-blue);
    font-size: 2.2em;
    font-weight: 800;
    margin-bottom: 10px;
}

.pragas-sp-section .text-content h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.pragas-sp-section .text-content h4 {
    color: var(--secondary-green);
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 20px;
}

.pragas-sp-section .text-content ul {
    margin-bottom: 30px;
}

.pragas-sp-section .text-content li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95em;
}

.pragas-sp-section .text-content li i {
    color: var(--secondary-green);
    margin-right: 10px;
    margin-top: 3px;
    font-size: 1.1em;
}

/* ===================================
   SEÇÃO: PRAGAS ICONS
   =================================== */
.pragas-icons-section {
    padding: 50px 0;
    background-color: var(--light-gray);
}

.section-title-center {
    text-align: center;
    font-size: 2em;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.pragas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    justify-items: center;
}

.praga-item {
    text-align: center;
    transition: transform 0.3s ease;
}

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

.praga-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 10px;
}

.praga-item p {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.9em;
}

/* ===================================
   SEÇÃO: DUAS COLUNAS
   =================================== */
.two-columns-section {
    padding: 60px 0;
    background-color: white;
}

.two-columns-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.two-columns-section .column h2 {
    color: var(--primary-blue);
    font-size: 1.8em;
    font-weight: 800;
    margin-bottom: 20px;
}

.two-columns-section .column p {
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.7;
}

.check-list {
    margin-top: 25px;
}

.check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95em;
}

.check-list li i {
    color: var(--secondary-green);
    margin-right: 10px;
    font-size: 1.2em;
}

/* ===================================
   SEÇÃO: SERVIÇOS
   =================================== */
.services-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .sub-title {
    display: block;
    font-size: 1.1em;
    font-weight: 400;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.section-title h2 {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card .card-content {
    padding: 20px;
    text-align: center;
}

.service-card .card-content h3 {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.service-card .card-content p {
    margin-bottom: 20px;
    color: #666;
    font-size: 0.95em;
}

/* ===================================
   SEÇÃO: DESENTUPIMENTO
   =================================== */
.desentupimento-section {
    padding: 60px 0;
    background-color: white;
}

.desentupimento-section .subtitle {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 50px;
    color: var(--dark-gray);
}

.desentupimento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.desentupimento-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    background-color: white;
}

.desentupimento-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.desentupimento-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.desentupimento-card .card-content {
    padding: 15px 10px;
}

.desentupimento-card .card-content h4 {
    font-size: 0.95em;
    font-weight: 600;
    color: var(--dark-blue);
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================================
   SEÇÃO: NOSSOS CLIENTES
   =================================== */
.clients-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                      url('https://ldtechsp1.com.br/backup/wp-content/uploads/2024/10/background_03.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 50px;
    gap: 20px;
}

.stat-item {
    background-color: var(--primary-blue);
    padding: 30px 20px;
    border-radius: 12px;
    min-width: 200px;
    flex: 1;
    max-width: 250px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-item .number {
    display: block;
    font-size: 3em;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.stat-item .label {
    display: block;
    font-size: 1em;
    font-weight: 400;
}

.clients-section .section-title h2 {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 15px;
}

.clients-section .subtitle {
    font-size: 1.1em;
    margin-bottom: 50px;
}

.client-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
    gap: 50px;
    overflow: hidden;
    animation: slideLogos 20s linear infinite;
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-10%);
    }
}

.client-logos:hover {
    animation-play-state: paused;
}

.client-logos img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.client-logos img:hover {
    transform: scale(1.1);
}

/* ===================================
   SEÇÃO: A MELHOR QUALIDADE
   =================================== */
.qualidade-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.qualidade-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.qualidade-text {
    flex: 1;
    max-width: 400px;
}

.qualidade-text .sub-title {
    display: block;
    font-size: 1.1em;
    font-weight: 400;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.qualidade-text h2 {
    font-size: 2.8em;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.qualidade-text p {
    margin-bottom: 30px;
    line-height: 1.7;
}

.qualidade-features {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-item {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 2.5em;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.9em;
    line-height: 1.6;
    color: #666;
}

/* ===================================
   SEÇÃO: RESOLVEMOS RÁPIDO
   =================================== */
.resolvemos-rapido-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                      url('https://ldtechsp1.com.br/backup/wp-content/uploads/2024/10/background_03.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 60px 0;
}

.resolvemos-rapido-section .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.resolvemos-rapido-section .car-image {
    flex: 1;
    text-align: left;
}

.resolvemos-rapido-section .car-image img {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.resolvemos-rapido-section .cta-content {
    flex: 1;
    text-align: right;
}

.resolvemos-rapido-section .cta-content p {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.resolvemos-rapido-section .cta-content h2 {
    font-size: 3.5em;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* ===================================
   SEÇÃO: ENTRE EM CONTATO
   =================================== */
.contato-section {
    padding: 60px 0;
    background-color: white;
}

.contato-section .container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.contato-section .image-box {
    position: relative;
    flex: 1;
    text-align: center;
}

.contato-section .image-box img {
    width: 80%;
    height: auto;
    border-radius: 15px;
}

.contato-section .whatsapp-bubble {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--secondary-green);
    color: white;
    padding: 25px;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.contato-section .whatsapp-bubble p {
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 8px;
}

.contato-section .whatsapp-bubble a {
    font-size: 1.1em;
    font-weight: 800;
}

.contato-section .text-content {
    flex: 1;
}

.contato-section .text-content h2 {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 25px;
}

.contato-section .text-content p {
    margin-bottom: 18px;
    line-height: 1.7;
    text-align: justify;
}

.contato-section .text-content strong {
    font-weight: 700;
    color: var(--primary-blue);
}

/* ===================================
   FOOTER
   =================================== */
.main-footer {
    background-color: var(--dark-blue);
    color: white;
    padding: 50px 0 20px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

.footer-description {
    font-size: 0.9em;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links h4,
.footer-contato h4,
.footer-seguranca h4 {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    transition: color 0.3s ease;
    font-size: 0.9em;
}

.footer-links ul li a:hover {
    color: var(--secondary-green);
}

.footer-links ul li i {
    color: var(--secondary-green);
    margin-right: 8px;
}

.footer-contato p,
.footer-seguranca p {
    margin-bottom: 10px;
    font-size: 0.9em;
}

.footer-contato i {
    margin-right: 8px;
    color: var(--secondary-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 30px;
}

.footer-info-left {
    max-width: 50%;
}

.footer-info-left p {
    font-size: 0.85em;
    margin-bottom: 20px;
    line-height: 1.6;
}

.whatsapp-footer {
    margin-top: 20px;
}

.whatsapp-footer p {
    font-weight: 700;
    margin-bottom: 8px;
}

.whatsapp-footer a {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--secondary-green);
}

.footer-info-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.precos-box img,
.site-seguro-box img {
    height: 100px;
}

.footer-copyright {
    text-align: center;
    font-size: 0.85em;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright p {
    margin-bottom: 5px;
}

/* ===================================
   BOTÕES FLUTUANTES
   =================================== */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background-color: var(--secondary-green);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseWhatsApp 1.5s infinite;
    transition: transform 0.3s ease;
}

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

@keyframes pulseWhatsApp {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 12px rgba(76, 175, 80, 0.8), 0 0 0 15px rgba(76, 175, 80, 0.1);
    }
}

.phone-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    left: 30px;
    background-color: var(--red-phone);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shake 2s infinite;
    transition: transform 0.3s ease;
}

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

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: rotate(-10deg);
    }
    20%, 40%, 60%, 80% {
        transform: rotate(10deg);
    }
}

/* ===================================
   RESPONSIVO - TABLET
   =================================== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.2em;
    }
    
    .hero-content h2 {
        font-size: 1.5em;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .qualidade-content {
        flex-direction: column;
    }
    
    .qualidade-text {
        max-width: 100%;
    }
    
    .qualidade-features {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   RESPONSIVO - MOBILE
   =================================== */
@media (max-width: 768px) {
    /* Top Bar */
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .top-info,
    .top-contact {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .top-info span,
    .top-contact span {
        margin: 0;
        font-size: 0.75em;
    }
    
    /* Header Mobile - Logo, Menu e Botão Ligação */
    .main-header .container {
        display: grid;
        grid-template-columns: auto 1fr auto auto;
        gap: 10px;
        align-items: center;
    }
    
    .logo-section {
        grid-column: 1;
        order: 1;
    }
    
    .logo {
        height: 40px;
    }
    
    /* Menu Toggle */
    .menu-toggle {
        display: flex;
        grid-column: 2;
        order: 2;
        justify-self: end;
        margin-right: 10px;
    }
    
    /* Botão de Ligação Mobile */
    .btn-phone-mobile {
        display: flex;
        grid-column: 3;
        order: 3;
    }
    
    /* Esconde botões desktop no mobile */
    .contact-buttons {
        display: none;
    }
    
    /* Navigation */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-blue);
        transition: right 0.3s ease;
        z-index: 1001;
        padding: 60px 20px 20px;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-nav a {
        color: white;
        display: block;
        padding: 15px;
        font-size: 1em;
    }
    
    .main-nav a:hover {
        background-color: rgba(255,255,255,0.1);
    }
    
    .menu-close {
        display: block;
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0,0,0,0.5);
        z-index: 1000;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8em;
    }
    
    .hero-content h2 {
        font-size: 1.3em;
    }
    
    .hero-content p {
        font-size: 0.95em;
    }
    
    .btn-whatsapp-hero {
        font-size: 1.1em;
        padding: 12px 30px;
    }
    
    /* Pragas SP Section */
    .pragas-sp-section .container {
        flex-direction: column;
    }
    
    .pragas-sp-section .text-content h2 {
        font-size: 1.6em;
    }
    
    .pragas-sp-section .text-content h3 {
        font-size: 1.2em;
    }
    
    /* Pragas Grid */
    .pragas-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }
    
    .praga-item img {
        width: 80px;
        height: 80px;
    }
    
    /* Two Columns */
    .two-columns-section .container {
        grid-template-columns: 1fr;
    }
    
    .two-columns-section .column h2 {
        font-size: 1.5em;
    }
    
    /* Services */
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 1.8em;
    }
    
    /* Desentupimento */
    .desentupimento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Stats */
    .stats-row {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
    }
    
    /* Client Logos */
    .client-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .client-logos img {
        height: 50px;
    }
    
    /* Qualidade */
    .qualidade-features {
        grid-template-columns: 1fr;
    }
    
    .qualidade-text h2 {
        font-size: 2em;
    }
    
    /* Resolvemos Rápido */
    .resolvemos-rapido-section .content {
        flex-direction: column;
        text-align: center;
    }
    
    .resolvemos-rapido-section .car-image {
        text-align: center;
    }
    
    .resolvemos-rapido-section .car-image img {
        max-width: 350px;
    }
    
    .resolvemos-rapido-section .cta-content {
        text-align: center;
    }
    
    .resolvemos-rapido-section .cta-content h2 {
        font-size: 2.5em;
    }
    
    /* Contato */
    .contato-section .container {
        flex-direction: column;
    }
    
    .contato-section .text-content h2 {
        font-size: 1.8em;
    }
    
    .contato-section .whatsapp-bubble {
        width: 150px;
        height: 150px;
        padding: 20px;
    }
    
    .contato-section .whatsapp-bubble p {
        font-size: 0.75em;
    }
    
    .contato-section .whatsapp-bubble a {
        font-size: 1em;
    }
    
    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo img {
        margin: 0 auto 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info-left {
        max-width: 100%;
    }
    
    .footer-info-right {
        flex-direction: column;
    }
    
    /* Floating Buttons */
    .whatsapp-float,
    .phone-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
    }
    
    .whatsapp-float {
        right: 20px;
    }
    
    .phone-float {
        left: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5em;
    }
    
    .hero-content h2 {
        font-size: 1.1em;
    }
    
    .pragas-sp-section .text-content h2 {
        font-size: 1.4em;
    }
    
    .section-title h2 {
        font-size: 1.5em;
    }
    
    .desentupimento-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item .number {
        font-size: 2.5em;
    }
}