/* Reset e Estilos Gerais */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --primary-blue: #0056b3;
    --secondary-blue: #003d80;
    --accent-green: #25d366;
    --accent-red: #d9534f;
    --white: #ffffff;
    --text-dark: #333333;
    --bg-light: #f4f7fa;
    --transition: all 0.3s ease;
}

.highlight-orange {
    color: #FF8C00 !important; /* Laranja vibrante */
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

body {
    overflow-x: hidden;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2px;
    width: 100%;
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-blue);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

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

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

.contact-info i {
    margin-right: 5px;
}

/* Main Nav */
.main-nav {
    background-color: var(--white);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 90px;
    margin-right: 10px;
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue);
    white-space: nowrap;
}

.brand-name span {
    color: #333;
}

.trust-badge img {
    height: 70px;
    width: auto;
    border-radius: 5px;
}

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

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-blue);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--primary-blue);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sidebar Menu */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

.sidebar-links {
    list-style: none;
    margin-bottom: 40px;
}

.sidebar-links li {
    margin-bottom: 20px;
}

.sidebar-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.sidebar-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Botões */
.btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-whatsapp {
    background-color: var(--accent-green);
    color: white;
}

.btn-emergency {
    background-color: var(--accent-red);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 86, 179, 0.75), rgba(0, 61, 128, 0.85)), url('assets/desentupimento-baixada.webp');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

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

.hero-text {
    flex: 1;
}

.hero-text h3 {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-text h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-transform: none;
}

.btn-cta {
    background-color: var(--accent-green);
    color: white;
    padding: 15px 35px;
    font-size: 18px;
    border: 2px solid white;
}
.btn-ct {
    background-color: #e20f0f;
    color: white;
    padding: 15px 35px;
    font-size: 18px;
    border: 2px solid white;
}
.hero-image {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-image img {
    max-height: 110%;
    object-fit: contain;
}

/* Info Cards */
.info-cards {
    background-color: #0e0b08;
    padding: 40px 0;
    color: white;
}

.info-cards .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.card:last-child {
    border-right: none;
}

.card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 800;
}

.card p {
    font-size: 15px;
    opacity: 0.9;
}

/* Seção de Serviços - CORREÇÃO DE ORGANIZAÇÃO */
.services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 50px;
    font-weight: 800;
    text-transform: uppercase;
    width: 100%;
}

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

.service-card {
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

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

.service-overlay {
    background-color: transparent; /* Removido o fundo azul claro */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.service-overlay span {
    background-color: #0057b3da;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;

    position: absolute;
    top: 190px;
    left: 50%;
    transform: translateX(-50%);

    z-index: 9999;
    white-space: nowrap;
}
.service-overlay {
    position: relative !important;
    overflow: visible !important;
    z-index: 10;
}
.service-overlay {
    position: relative !important;
    overflow: visible !important;
    z-index: 10;
}




/* Seção de Cobertura - CORREÇÃO DE ORGANIZAÇÃO */
.locations {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.section-title-blue {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-weight: 800;
    text-transform: uppercase;
    width: 100%;
}

.section-subtitle {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

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

.location-card {
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.location-overlay {
    background-color: rgba(0, 86, 179, 0.75);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: white;
    transition: var(--transition);
}

.location-card:hover .location-overlay {
    background-color: rgba(0, 86, 179, 0.85);
}

.location-overlay h3 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.location-overlay p {
    font-size: 16px;
    line-height: 1.5;
}

/* Seção Hidrojateamento */
.hidro-highlight {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.hidro-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hidro-image {
    flex: 1;
}

.hidro-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.hidro-text {
    flex: 1.5;
}

.hidro-text h2 {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-weight: 800;
}

.hidro-text p {
    font-size: 18px;
    margin-bottom: 35px;
}

.btn-whatsapp-green {
    background-color: var(--accent-green);
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
}

/* Seção Por que nos Contratar */
.why-us {
    padding: 80px 0;
    background-color: #fff;
}

.why-us-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.why-us-image {
    flex: 1;
    position: relative;
}

.why-us-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 2;
    position: relative;
}

.why-us-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--primary-blue);
    border-radius: 20px;
    z-index: 1;
}

.why-us-text {
    flex: 1.2;
}

.why-us-header {
    background-color: #0066a1;
    color: white;
    padding: 20px 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.why-us-header h2 {
    font-size: 34px;
    font-weight: 800;
}

.why-us-body p {
    font-size: 18px;
    margin-bottom: 25px;
    text-align: justify;
}

/* Responsividade */
@media (max-width: 1100px) {
    .nav-links {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-image {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 20px;
    }
    
    .hero-image img {
        max-height: 350px; /* Aumentado de 250px para 350px */
        width: auto;
        display: block;
        margin: 0 auto;
    }
    
    .hero .container {
        flex-direction: column; /* Garante o empilhamento vertical */
        text-align: center;
        height: auto;
        padding: 40px 0 0 0; /* Largura total sem espaçamentos laterais */
    }
    
    .hero-text {
        order: 1; /* Texto primeiro */
        margin-bottom: 20px;
    }
    
    .hero-image {
        order: 2; /* Imagem depois (embaixo) */
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero {
        height: auto;
        min-height: 500px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .info-cards .container {
        grid-template-columns: 1fr;
    }
    
    .card {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 25px;
    }
    
    .card:last-child {
        border-bottom: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .hidro-content, .why-us-content {
        flex-direction: column;
        text-align: center;
    }
    
    .why-us-body p {
        text-align: center;
    }
    
    .why-us-image {
        width: 85%;
        margin: 0 auto 40px;
    }
}

@media (max-width: 768px) {
    .nav-buttons {
        display: none;
    }
    
    .trust-badge {
        display: block; /* Garante que o selo apareça no mobile */
    }

    .trust-badge img {
        height: 50px; /* Reduz um pouco o tamanho para caber melhor no celular */
    }

    .nav-left {
        gap: 10px; /* Diminui o espaço entre logo e selo no mobile */
    }
    
    .section-title, .section-title-blue, .hidro-text h2, .why-us-header h2 {
        font-size: 28px;
    }
    
    .hero-text h1 {
        font-family: 'Roboto', sans-serif;
        font-size: 26px;
        line-height: 1.2;
        width: 100%;
        padding: 0 10px;
        margin: 0 0 20px 0;
        word-wrap: break-word;
        font-weight: 900;
        letter-spacing: -0.5px;
    }
    .hero-text h3 {
        font-family: 'Roboto', sans-serif;
        font-size: 22px;
        margin-bottom: 15px;
        font-weight: 900;
        color: #fff;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
        letter-spacing: 1px;
    }

    .hero-text {
        padding: 0;
        width: 100%;
    }
    .hero .container {
        padding: 40px 0 0 0;
        width: 100%;
        max-width: 100%;
    }
    .hero {
        padding: 0;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-name {
        font-size: 14px; /* Reduz o nome da marca para dar espaço ao selo */
    }
    
    .logo img {
        height: 55px; /* Reduz o logo para dar espaço ao selo */
    }

    .trust-badge img {
        height: 55px; /* Selo menor em telas muito pequenas */
    }

    .nav-left {
        gap: 8px;
    }
}


/* Seção Faça seu Orçamento */
.budget-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0056b3 0%, #003d80 100%);
    color: white;
}

.budget-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.budget-image {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 280px;
}

.budget-image img {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
}

.budget-form-wrapper {
    flex: 1;
}

.budget-form-wrapper h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.budget-text {
    margin-bottom: 25px;
}

.budget-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
    opacity: 0.95;
}

.budget-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    background-color: white;
    color: #333;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-enviar {
    padding: 15px 40px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
}

.btn-enviar:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Rodapé */
.footer {
    background: linear-gradient(135deg, #003d80 0%, #001a40 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #25d366;
}

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

.footer-section ul li {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.footer-section ul li i {
    margin-right: 12px;
    color: #25d366;
    width: 20px;
    text-align: center;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-section p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
}

.footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-badges img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    border-radius: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

/* Responsividade para Orçamento e Rodapé */
@media (max-width: 992px) {
    .budget-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .budget-image {
        min-width: 100%;
        max-width: 100%;
    }
    
    .budget-form-wrapper h2 {
        font-size: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .budget-section {
        padding: 50px 0;
    }
    
    .budget-form-wrapper h2 {
        font-size: 28px;
    }
    
    .budget-text p {
        font-size: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }
    
    .btn-enviar {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .footer-section h3 {
        font-size: 16px;
    }
    
    .footer-section ul li,
    .footer-section p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .budget-section {
        padding: 40px 0;
    }
    
    .budget-image {
        display: none;
    }
    
    .budget-form-wrapper h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .budget-text p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .budget-form {
        gap: 15px;
    }
    
    .form-group label {
        font-size: 12px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .btn-enviar {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .footer-section h3 {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .footer-section ul li,
    .footer-section p {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .footer-bottom {
        font-size: 12px;
    }
}

/* Estilos para o FAQ */
.faq-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    user-select: none;
}

.faq-question i {
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 20px;
}

.faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.faq-cta {
    margin-top: 30px;
}

.btn-whatsapp-faq {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-faq:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background-color: #20bd5a;
}

/* Ajuste da imagem colada no rodapé */
.budget-section {
    padding-bottom: 0; /* Remove padding inferior para a imagem colar */
}

.budget-content {
    align-items: flex-end; /* Alinha itens ao fundo */
}

.budget-image {
    margin-bottom: -5px; /* Pequeno ajuste para garantir que cole */
}

.budget-image img {
    max-height: 500px;
    display: block;
}

/* Rodapé com fundo preto */
.footer {
    background: #000000 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


.color-rotate {
  color: #ff8c00; /* Laranja vibrante */
  font-weight: 900;
  display: inline-block;
  margin-top: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  font-size: 1.2em;
}
/* =========================
   SECTION DESENTUPIDORA
========================= */
.desentupidora-baixada {
  padding: 60px 16px;
  background: #f4f6f8;
  font-family: Arial, Helvetica, sans-serif;
}

/* =========================
   GRID SERVIÇOS
========================= */
.desentupidora-baixada .servicos-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* =========================
   CARD
========================= */
.desentupidora-baixada .servico-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.desentupidora-baixada .servico-item:hover {
  transform: translateY(-5px);
}

.desentupidora-baixada .servico-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

.desentupidora-baixada .servico-item h3 {
  margin: 14px 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.desentupidora-baixada .servico-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* =========================
   BOTÕES (SEM CONFLITO)
========================= */
.desentupidora-baixada .botoes {
  margin-top: 16px;
  display: flex;
  gap: 8px;
}

/* botão base — NÃO usa .btn global */
.desentupidora-baixada .botoes a {
  flex: 1;
  height: 44px;
  padding: 0 12px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;

  white-space: nowrap;
  min-width: 0;

  transition: all 0.3s ease;
}

/* ícones */
.desentupidora-baixada .botoes a i {
  font-size: 15px;
}

/* WhatsApp */
.desentupidora-baixada .botoes .whatsapp {
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

/* Ligue Agora */
.desentupidora-baixada .botoes .ligar {
  background: linear-gradient(135deg, #e53935, #c62828);
  box-shadow: 0 4px 10px rgba(229, 57, 53, 0.4);
}

/* Hover */
.desentupidora-baixada .botoes a:hover {
  transform: scale(1.05);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 900px) {
  .desentupidora-baixada .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .desentupidora-baixada .servicos-grid {
    grid-template-columns: 1fr;
  }

  /* botões continuam lado a lado */
  .desentupidora-baixada .botoes {
    flex-direction: row;
  }

  .desentupidora-baixada .botoes a {
    height: 42px;
    font-size: 13px;
    padding: 0 10px;
  }

  .desentupidora-baixada .botoes a i {
    font-size: 14px;
  }
}
/* ==========================================
   SEÇÃO BAIXADA DESENTUPIDORA - CSS
   ========================================== */

/* ===== CONTAINER PRINCIPAL ===== */
.desentupir-baixada {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    min-height: 100vh;
    background: #fff;
    overflow: hidden;
}

/* ===== LADO ESQUERDO - IMAGEM ===== */
.desentupir-baixada__left {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    background: #f0f0f0;
}

.desentupir-baixada__image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.desentupir-baixada__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
}

/* ===== OVERLAY COM CONTEÚDO ===== */
.desentupir-baixada__overlay {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.desentupir-baixada__title {
    color: #fff;
    font-size: clamp(2rem, 6vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 2.5rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.5px;
}

.desentupir-baixada__title strong {
    display: block;
    font-weight: 900;
    font-size: 1.15em;
    margin-top: 0.4em;
}

/* ===== SEÇÃO LOGO ===== */
.desentupir-baixada__logo-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.desentupir-baixada__logo-wrapper {
    width: clamp(110px, 18vw, 160px);
    height: clamp(110px, 18vw, 160px);
    background: #fff;
    border: 7px solid #dc143c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.desentupir-baixada__logo {
    width: 85%;
    height: 85%;
    object-fit: contain;
    border-radius: 50%;
}

.desentupir-baixada__emergency {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 1.4rem 2rem;
    border-radius: 8px;
    border-left: 6px solid #dc143c;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.desentupir-baixada__emergency-text {
    color: #ffff00;
    font-weight: 900;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    letter-spacing: 1.2px;
    line-height: 1.2;
    text-transform: uppercase;
}

/* ===== LADO DIREITO - CONTEÚDO ===== */
.desentupir-baixada__right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2.5rem, 6vw, 4.5rem);
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    overflow-y: auto;
}

.desentupir-baixada__text-content {
    width: 100%;
    max-width: 520px;
}

.desentupir-baixada__subtitle {
    font-size: clamp(1.4rem, 4vw, 1.9rem);
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
}

/* ===== LISTA DE BENEFÍCIOS ===== */
.desentupir-baixada__benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    margin-bottom: 2.2rem;
}

.desentupir-baixada__benefit {
    padding: 1.1rem 1.2rem;
    background: #ffffff;
    border-left: 5px solid #dc143c;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.desentupir-baixada__benefit:hover {
    background: rgba(220, 20, 60, 0.12);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.15);
}

.desentupir-baixada__benefit p {
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.desentupir-baixada__benefit strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* ===== CAIXA DE CONTATO ===== */
.desentupir-baixada__contact-box {
    background: #f0f0f0;
    padding: 1.6rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.desentupir-baixada__contact-box:hover {
    border-color: #dc143c;
    background: #fafafa;
}

.desentupir-baixada__contact-label {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 0.9rem 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.desentupir-baixada__phone {
    display: inline-block;
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    font-weight: 900;
    color: #dc143c;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.desentupir-baixada__phone:hover {
    color: #ff1744;
    transform: scale(1.1);
}

.desentupir-baixada__phone:active {
    transform: scale(0.98);
}

/* ===== BOTÃO WHATSAPP ===== */
.desentupir-baixada__whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    background: linear-gradient(135deg, #25d366 0%, #1fa855 100%);
    color: #fff;
    padding: clamp(1.1rem, 2.5vw, 1.4rem) clamp(1.6rem, 3.5vw, 2.2rem);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
    border: none;
    cursor: pointer;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.desentupir-baixada__whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.desentupir-baixada__whatsapp:hover::before {
    left: 100%;
}

.desentupir-baixada__whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #1fa855 0%, #128c45 100%);
}

.desentupir-baixada__whatsapp:active {
    transform: translateY(-2px);
}

.desentupir-baixada__whatsapp-icon {
    width: clamp(30px, 6vw, 45px);
    height: clamp(30px, 6vw, 45px);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.desentupir-baixada__whatsapp-text {
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 0.95em;
    position: relative;
    z-index: 1;
}

/* ==========================================
   RESPONSIVIDADE
   ========================================== */

/* DESKTOPS GRANDES - 1440px+ */
@media (min-width: 1440px) {
    .desentupir-baixada {
        grid-template-columns: 1.4fr 1fr;
    }

    .desentupir-baixada__overlay {
        padding: 5rem;
    }
}

/* TABLETS GRANDES - 1024px */
@media (max-width: 1024px) {
    .desentupir-baixada {
        grid-template-columns: 1.2fr 1fr;
        min-height: auto;
    }

    .desentupir-baixada__left {
        min-height: 55vh;
    }

    .desentupir-baixada__overlay {
        padding: 3rem;
    }

    .desentupir-baixada__right {
        padding: 3rem 2rem;
        min-height: auto;
    }
}

/* TABLETS - 768px */
@media (max-width: 768px) {
    .desentupir-baixada {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .desentupir-baixada__left {
        min-height: 50vh;
        min-height: 50dvh;
    }

    .desentupir-baixada__overlay {
        padding: 2.5rem;
    }

    .desentupir-baixada__title {
        margin-bottom: 2rem;
    }

    .desentupir-baixada__logo-section {
        gap: 1.5rem;
    }

    .desentupir-baixada__right {
        padding: 2.5rem 1.5rem;
    }

    .desentupir-baixada__subtitle {
        margin-bottom: 1.5rem;
    }

    .desentupir-baixada__benefits-list {
        gap: 1rem;
        margin-bottom: 1.8rem;
    }

    .desentupir-baixada__benefit {
        padding: 0.9rem 1rem;
    }

    .desentupir-baixada__contact-box {
        padding: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .desentupir-baixada__whatsapp {
        padding: 1rem 1.2rem;
    }
}

/* CELULAR GRANDE - 600px */
@media (max-width: 600px) {
    .desentupir-baixada__left {
        min-height: 45vh;
        min-height: 45dvh;
    }

    .desentupir-baixada__overlay {
        padding: 2rem;
    }

    .desentupir-baixada__title {
        margin-bottom: 1.5rem;
    }

    .desentupir-baixada__logo-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }

    .desentupir-baixada__logo-wrapper {
        width: clamp(100px, 20vw, 130px);
        height: clamp(100px, 20vw, 130px);
    }

    .desentupir-baixada__right {
        padding: 2rem 1.2rem;
    }

    .desentupir-baixada__text-content {
        max-width: 100%;
    }

    .desentupir-baixada__subtitle {
        margin-bottom: 1.3rem;
    }

    .desentupir-baixada__benefits-list {
        gap: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .desentupir-baixada__benefit {
        padding: 0.8rem 0.9rem;
    }

    .desentupir-baixada__benefit p {
        font-size: 0.95rem;
    }

    .desentupir-baixada__contact-box {
        padding: 1.1rem;
        margin-bottom: 1.3rem;
    }

    .desentupir-baixada__phone {
        font-size: 1.8rem;
    }

    .desentupir-baixada__whatsapp {
        gap: 0.8rem;
        padding: 0.95rem 1rem;
        font-size: 1rem;
    }

    .desentupir-baixada__whatsapp-icon {
        width: 32px;
        height: 32px;
    }

    .desentupir-baixada__whatsapp-text {
        font-size: 0.9em;
    }
}

/* CELULAR MÉDIO - 480px */
@media (max-width: 480px) {
    .desentupir-baixada__left {
        min-height: 42vh;
        min-height: 42dvh;
    }

    .desentupir-baixada__overlay {
        padding: 1.5rem;
    }

    .desentupir-baixada__title {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    }

    .desentupir-baixada__logo-wrapper {
        width: 95px;
        height: 95px;
        border-width: 5px;
    }

    .desentupir-baixada__emergency {
        padding: 1rem 1.2rem;
        border-left-width: 4px;
    }

    .desentupir-baixada__emergency-text {
        font-size: 0.9rem;
    }

    .desentupir-baixada__right {
        padding: 1.8rem 1rem;
    }

    .desentupir-baixada__subtitle {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .desentupir-baixada__benefits-list {
        gap: 0.8rem;
        margin-bottom: 1.3rem;
    }

    .desentupir-baixada__benefit {
        padding: 0.7rem 0.8rem;
    }

    .desentupir-baixada__benefit p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .desentupir-baixada__contact-box {
        padding: 1rem;
        margin-bottom: 1.2rem;
    }

    .desentupir-baixada__contact-label {
        font-size: 0.8rem;
        margin-bottom: 0.7rem;
    }

    .desentupir-baixada__phone {
        font-size: 1.6rem;
    }

    .desentupir-baixada__whatsapp {
        gap: 0.7rem;
        padding: 0.9rem 0.9rem;
        font-size: 0.95rem;
    }

    .desentupir-baixada__whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .desentupir-baixada__whatsapp-text {
        font-size: 0.85em;
    }
}

/* CELULAR PEQUENO - 380px */
@media (max-width: 380px) {
    .desentupir-baixada__left {
        min-height: 40vh;
        min-height: 40dvh;
    }

    .desentupir-baixada__overlay {
        padding: 1.2rem;
    }

    .desentupir-baixada__title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .desentupir-baixada__logo-wrapper {
        width: 85px;
        height: 85px;
        border-width: 4px;
    }

    .desentupir-baixada__emergency {
        padding: 0.9rem 1rem;
    }

    .desentupir-baixada__emergency-text {
        font-size: 0.8rem;
        letter-spacing: 0.8px;
    }

    .desentupir-baixada__right {
        padding: 1.5rem 0.9rem;
    }

    .desentupir-baixada__subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .desentupir-baixada__benefits-list {
        gap: 0.7rem;
        margin-bottom: 1.2rem;
    }

    .desentupir-baixada__benefit {
        padding: 0.6rem 0.7rem;
    }

    .desentupir-baixada__benefit p {
        font-size: 0.85rem;
    }

    .desentupir-baixada__contact-box {
        padding: 0.9rem;
        margin-bottom: 1rem;
    }

    .desentupir-baixada__phone {
        font-size: 1.4rem;
    }

    .desentupir-baixada__whatsapp {
        gap: 0.6rem;
        padding: 0.85rem 0.8rem;
        font-size: 0.9rem;
    }

    .desentupir-baixada__whatsapp-icon {
        width: 24px;
        height: 24px;
    }

    .desentupir-baixada__whatsapp-text {
        font-size: 0.8em;
    }
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
    .desentupir-baixada__benefit,
    .desentupir-baixada__phone,
    .desentupir-baixada__whatsapp,
    .desentupir-baixada__whatsapp::before,
    .desentupir-baixada__contact-box {
        transition: none;
    }
}

@media (prefers-color-scheme: dark) {
    .desentupir-baixada__right {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }

    .desentupir-baixada__subtitle {
        color: #e0e0e0;
    }

    .desentupir-baixada__benefit p {
        color: #c0c0c0;
    }

    .desentupir-baixada__contact-box {
        background: #2d2d2d;
        border-color: #444;
    }

    .desentupir-baixada__contact-box:hover {
        background: #333;
    }

    .desentupir-baixada__benefit {
        background: rgba(220, 20, 60, 0.15);
    }
}

/* ===== ORIENTAÇÃO LANDSCAPE ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .desentupir-baixada {
        min-height: auto;
    }

    .desentupir-baixada__left {
        min-height: 100vh;
    }

    .desentupir-baixada__overlay {
        padding: 2rem;
    }

    .desentupir-baixada__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .desentupir-baixada__logo-section {
        gap: 1rem;
    }

    .desentupir-baixada__logo-wrapper {
        width: 100px;
        height: 100px;
    }
}
/* ==========================================
   SEÇÃO DESENTUPIDORA MELHOR - CSS
   ========================================== */

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

/* ===== CONTAINER PRINCIPAL ===== */
.desentupidora-melhor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    min-height: 100vh;
    background: #fff;
    gap: 0;
}

.desentupidora-melhor__left {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 8vw, 5rem);
    background: #f8f8f8;
}

.desentupidora-melhor__right {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 6vw, 4rem);
    background: #fff;
}

.desentupidora-melhor__footer {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: linear-gradient(135deg, #001a4d 0%, #003d99 100%);
    gap: 0;
}

/* ===== LADO ESQUERDO - CONTEÚDO ===== */
.desentupidora-melhor__title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.desentupidora-melhor__title strong {
    display: block;
    font-weight: 900;
    font-size: 1.1em;
}

.desentupidora-melhor__highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.desentupidora-melhor__highlight-bar {
    width: 4px;
    height: 2rem;
    background: linear-gradient(180deg, #0066ff 0%, #0052cc 100%);
    border-radius: 2px;
}

.desentupidora-melhor__highlight-text {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.desentupidora-melhor__description {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

/* ===== BOTÕES ===== */
.desentupidora-melhor__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.desentupidora-melhor__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: clamp(0.9rem, 2vw, 1.1rem) clamp(1.2rem, 3vw, 1.8rem);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.desentupidora-melhor__btn-icon {
    width: clamp(18px, 3vw, 24px);
    height: clamp(18px, 3vw, 24px);
}

.desentupidora-melhor__btn--whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #1fa855 100%);
    color: #fff;
}

.desentupidora-melhor__btn--whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #1fa855 0%, #128c45 100%);
}

.desentupidora-melhor__btn--call {
    background: linear-gradient(135deg, #dc143c 0%, #b30a2f 100%);
    color: #fff;
}

.desentupidora-melhor__btn--call:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4);
    background: linear-gradient(135deg, #b30a2f 0%, #8a0823 100%);
}

/* ===== LADO DIREITO - IMAGENS ===== */
.desentupidora-melhor__images-grid {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: clamp(300px, 60vw, 450px);
}

.desentupidora-melhor__image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.desentupidora-melhor__image--1 {
    width: 55%;
    height: 65%;
    top: 0;
    left: 0;
    z-index: 3;
}

.desentupidora-melhor__image--2 {
    width: 50%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.desentupidora-melhor__image--3 {
    width: 60%;
    height: 70%;
    top: 15%;
    right: 5%;
    z-index: 1;
}

/* ===== BADGES ===== */
.desentupidora-melhor__badge {
    position: absolute;
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: #fff;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.3);
    z-index: 10;
}

.desentupidora-melhor__badge-value {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 900;
    margin: 0;
    line-height: 1;
}

.desentupidora-melhor__badge-label {
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    font-weight: 600;
    margin: 0.3rem 0 0 0;
    opacity: 0.95;
}

.desentupidora-melhor__badge--experience {
    top: 10%;
    right: 10%;
}

.desentupidora-melhor__badge--clients {
    bottom: 15%;
    right: 5%;
}

/* ===== BARRA INFERIOR ===== */
.desentupidora-melhor__benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.8rem, 2vw, 1.2rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.desentupidora-melhor__benefit:last-child {
    border-right: none;
}

.desentupidora-melhor__benefit:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.desentupidora-melhor__benefit-icon {
    width: clamp(28px, 4vw, 36px);
    height: clamp(28px, 4vw, 36px);
    color: #25d366;
    flex-shrink: 0;
}

.desentupidora-melhor__benefit-text {
    text-align: left;
}

.desentupidora-melhor__benefit-title {
    color: #fff;
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* ==========================================
   RESPONSIVIDADE
   ========================================== */

/* TABLETS - 1024px */
@media (max-width: 1024px) {
    .desentupidora-melhor {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        min-height: auto;
    }

    .desentupidora-melhor__left {
        grid-column: 1;
        grid-row: 1;
        padding: clamp(2rem, 6vw, 4rem);
    }

    .desentupidora-melhor__right {
        grid-column: 1;
        grid-row: 2;
        padding: clamp(2rem, 5vw, 3rem);
    }

    .desentupidora-melhor__footer {
        grid-column: 1;
        grid-row: 3;
    }

    .desentupidora-melhor__images-grid {
        max-width: 100%;
        height: clamp(280px, 50vw, 380px);
    }
}

/* TABLETS PEQUENOS - 768px */
@media (max-width: 768px) {
    .desentupidora-melhor__left {
        padding: clamp(1.5rem, 5vw, 3rem);
    }

    .desentupidora-melhor__title {
        margin-bottom: 1.2rem;
    }

    .desentupidora-melhor__highlight {
        margin-bottom: 1.2rem;
    }

    .desentupidora-melhor__description {
        margin-bottom: 1.5rem;
    }

    .desentupidora-melhor__buttons {
        gap: 0.8rem;
    }

    .desentupidora-melhor__right {
        padding: clamp(1.5rem, 4vw, 2.5rem);
    }

    .desentupidora-melhor__images-grid {
        height: clamp(250px, 45vw, 350px);
    }

    .desentupidora-melhor__footer {
        grid-template-columns: repeat(3, 1fr);
    }

    .desentupidora-melhor__benefit {
        padding: clamp(1.2rem, 2.5vw, 1.8rem);
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
    }

    .desentupidora-melhor__benefit-text {
        text-align: center;
    }

    .desentupidora-melhor__benefit:hover {
        transform: translateY(-1px);
    }
}

/* CELULAR GRANDE - 600px */
@media (max-width: 600px) {
    .desentupidora-melhor__left {
        padding: 1.5rem 1.2rem;
    }

    .desentupidora-melhor__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .desentupidora-melhor__highlight {
        margin-bottom: 1rem;
    }

    .desentupidora-melhor__highlight-bar {
        height: 1.5rem;
    }

    .desentupidora-melhor__highlight-text {
        font-size: 1rem;
    }

    .desentupidora-melhor__description {
        font-size: 0.95rem;
        margin-bottom: 1.3rem;
    }

    .desentupidora-melhor__buttons {
        gap: 0.7rem;
        flex-direction: column;
    }

    .desentupidora-melhor__btn {
        width: 100%;
        padding: 1rem;
        font-size: 0.95rem;
    }

    .desentupidora-melhor__right {
        padding: 1.5rem 1.2rem;
    }

    .desentupidora-melhor__images-grid {
        height: clamp(220px, 50vw, 300px);
    }

    .desentupidora-melhor__image--1 {
        width: 60%;
        height: 70%;
    }

    .desentupidora-melhor__image--2 {
        width: 55%;
        height: 65%;
    }

    .desentupidora-melhor__image--3 {
        width: 65%;
        height: 75%;
    }

    .desentupidora-melhor__badge {
        padding: 0.9rem 1rem;
    }

    .desentupidora-melhor__badge-value {
        font-size: 1.2rem;
    }

    .desentupidora-melhor__badge-label {
        font-size: 0.75rem;
    }

    .desentupidora-melhor__footer {
        grid-template-columns: 1fr;
    }

    .desentupidora-melhor__benefit {
        padding: 1.2rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 1rem;
    }

    .desentupidora-melhor__benefit:last-child {
        border-bottom: none;
    }

    .desentupidora-melhor__benefit-text {
        text-align: left;
    }

    .desentupidora-melhor__benefit-icon {
        width: 28px;
        height: 28px;
    }
}

/* CELULAR MÉDIO - 480px */
@media (max-width: 480px) {
    .desentupidora-melhor__left {
        padding: 1.2rem 1rem;
    }

    .desentupidora-melhor__title {
        font-size: 1.5rem;
        margin-bottom: 0.9rem;
    }

    .desentupidora-melhor__highlight {
        margin-bottom: 0.9rem;
    }

    .desentupidora-melhor__highlight-bar {
        height: 1.3rem;
    }

    .desentupidora-melhor__highlight-text {
        font-size: 0.95rem;
    }

    .desentupidora-melhor__description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }

    .desentupidora-melhor__btn {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
        gap: 0.6rem;
    }

    .desentupidora-melhor__btn-icon {
        width: 18px;
        height: 18px;
    }

    .desentupidora-melhor__right {
        padding: 1.2rem 1rem;
    }

    .desentupidora-melhor__images-grid {
        height: clamp(200px, 45vw, 280px);
    }

    .desentupidora-melhor__badge {
        padding: 0.8rem 0.9rem;
    }

    .desentupidora-melhor__badge-value {
        font-size: 1.1rem;
    }

    .desentupidora-melhor__badge-label {
        font-size: 0.7rem;
        margin-top: 0.2rem;
    }

    .desentupidora-melhor__benefit {
        padding: 1rem;
    }

    .desentupidora-melhor__benefit-icon {
        width: 24px;
        height: 24px;
    }

    .desentupidora-melhor__benefit-title {
        font-size: 0.9rem;
    }
}

/* CELULAR PEQUENO - 380px */
@media (max-width: 380px) {
    .desentupidora-melhor__left {
        padding: 1rem 0.8rem;
    }

    .desentupidora-melhor__title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .desentupidora-melhor__highlight {
        margin-bottom: 0.8rem;
        gap: 0.8rem;
    }

    .desentupidora-melhor__highlight-bar {
        width: 3px;
        height: 1.2rem;
    }

    .desentupidora-melhor__highlight-text {
        font-size: 0.9rem;
    }

    .desentupidora-melhor__description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .desentupidora-melhor__buttons {
        gap: 0.6rem;
    }

    .desentupidora-melhor__btn {
        padding: 0.8rem 0.9rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .desentupidora-melhor__btn-icon {
        width: 16px;
        height: 16px;
    }

    .desentupidora-melhor__right {
        padding: 1rem 0.8rem;
    }

    .desentupidora-melhor__images-grid {
        height: clamp(180px, 40vw, 250px);
    }

    .desentupidora-melhor__badge {
        padding: 0.7rem 0.8rem;
    }

    .desentupidora-melhor__badge-value {
        font-size: 1rem;
    }

    .desentupidora-melhor__badge-label {
        font-size: 0.65rem;
    }

    .desentupidora-melhor__benefit {
        padding: 0.9rem 0.8rem;
    }

    .desentupidora-melhor__benefit-icon {
        width: 22px;
        height: 22px;
    }

    .desentupidora-melhor__benefit-title {
        font-size: 0.85rem;
    }
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
    .desentupidora-melhor__btn,
    .desentupidora-melhor__benefit {
        transition: none;
    }
}

@media (prefers-color-scheme: dark) {
    .desentupidora-melhor__left {
        background: #1a1a1a;
    }

    .desentupidora-melhor__title,
    .desentupidora-melhor__highlight-text {
        color: #e0e0e0;
    }

    .desentupidora-melhor__description {
        color: #b0b0b0;
    }
}

/* ===== ORIENTAÇÃO LANDSCAPE ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .desentupidora-melhor {
        min-height: auto;
    }

    .desentupidora-melhor__left {
        padding: 1.5rem 2rem;
    }

    .desentupidora-melhor__title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .desentupidora-melhor__description {
        margin-bottom: 1rem;
    }

    .desentupidora-melhor__images-grid {
        height: clamp(200px, 80vh, 300px);
    }
}
/* =========================
   RODAPÉ PREMIUM
========================= */
.rodape-premium {
  background: #ffffff;
  border-top: 1px solid #e6e6e6;
  font-family: Arial, Helvetica, sans-serif;
}

/* Wrapper */
.rodape-wrapper {
  max-width: 1300px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 2fr;
  gap: 40px;
  align-items: start;
}

/* Logo + texto */
.rodape-info {
  max-width: 320px;
}

.rodape-logo {
  max-width: 200px;
  margin-bottom: 18px;
}

.rodape-info p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Links */
.rodape-links h4,
.rodape-contato h4 {
  font-size: 17px;
  margin-bottom: 14px;
  color: #222;
}

.rodape-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rodape-links ul li {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

/* Contato */
.rodape-contato p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

/* Foto */
.rodape-foto img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Linha inferior */
.rodape-bottom {
  border-top: 1px solid #eee;
  padding: 18px 10px;
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 1024px) {
  .rodape-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .rodape-foto img {
    height: 200px;
  }
}

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

  .rodape-info,
  .rodape-links,
  .rodape-contato {
    max-width: 100%;
  }

  .rodape-logo {
    margin: 0 auto 18px;
  }

  .rodape-foto img {
    height: 180px;
  }
}

