/* ==========================================
   TechConsertoBSB - Landing Page Styles
   Identidade Forte: Vermelho Urgência & Azul Confiança
   Foco Total em Conversão Rápida
   ========================================== */

/* === CSS Variables === */
:root {
    --primary: #1a2a5e; /* Azul Confiança */
    --primary-dark: #0f1938;
    --primary-light: #2a3d7e;
    --secondary: #e6192b; /* Vermelho Urgência/Ação (Substituiu o Verde) */
    --secondary-hover: #c41221;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f0f1f3;
    --gray-200: #e2e4e8;
    --gray-300: #cccfd5;
    --gray-600: #6b7280;
    --gray-800: #2d3748;
    --gold: #f5a623;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 15px 50px rgba(0,0,0,0.15);
    --radius-sm: 4px; /* Botões menos arredondados (style.css anterior) */
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 310px;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: var(--primary);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Utility Classes === */
.text-red {
    color: var(--secondary) !important;
}

.text-center {
    text-align: center;
}

/* === Animações de Urgência (Pulsos) === */
.pulse-red {
    animation: pulse-red-anim 2s infinite;
}

@keyframes pulse-red-anim {
    0% { box-shadow: 0 0 0 0 rgba(230, 25, 43, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(230, 25, 43, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 25, 43, 0); }
}

.pulse-text {
    animation: text-pulse 1.5s infinite;
}

@keyframes text-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); color: #ff0a22; }
    100% { transform: scale(1); }
}

/* === Botões de Ação Principais (Estilo Ricardo-Eletro: Retangular com cantos mínimos) === */
.btn-action-red, .header-cta, .btn-service-red, .mobile-cta, .btn-urgent-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--secondary);
    color: var(--white) !important;
    border-radius: var(--radius-sm); /* Mínima arredondagem */
    font-weight: 800;
    transition: var(--transition);
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(230, 25, 43, 0.4);
    border: none;
    cursor: pointer;
}

.btn-action-red { padding: 18px 36px; font-size: 1.1rem; }
.header-cta { padding: 12px 24px; font-size: 0.85rem; justify-content: center; text-align: center; }
.btn-service-red { padding: 12px 20px; font-size: 0.9rem; margin-top: auto;}
.mobile-cta { padding: 16px !important; margin-top: 15px; }
.btn-urgent-red { padding: 22px 45px; font-size: 1.2rem; width: 100%; max-width: 450px; }

.btn-action-red:hover, .header-cta:hover, .btn-service-red:hover, .mobile-cta:hover, .btn-urgent-red:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 25, 43, 0.6);
}

.btn-rect, .header-cta-rect, .btn-rect-small {
    border-radius: var(--radius-sm) !important;
    font-weight: 700 !important;
}

.btn-rect-small {
    padding: 10px 03px !important;
    font-size: 0.7rem !important;
}

.btn-action-wide { width: 100%; margin-top: 20px; }
.btn-large { padding: 22px 45px; font-size: 1.2rem; }

/* === WhatsApp Icon Color (RED) === */
.whatsapp-red-icon {
    color: var(--secondary) !important;
}

/* Ícone branco dentro de botões vermelhos */
.header-cta .whatsapp-red-icon,
.btn-action-red .whatsapp-red-icon {
    color: var(--white) !important;
}

/* === Floating WhatsApp Button (SOLID WHITE BACKGROUND) === */
.whatsapp-float-red {
    position: fixed;
    bottom: 64px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: var(--white); /* FIX: Fundo branco sólido como Imagem 1 */
    border-radius: 50%; /* FIX: Garante que o fundo seja redondo */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary); /* Cor do ícone (Vermelho) */
    font-size: 32px;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(230, 25, 43, 0.5); /* Mantém a sombra avermelhada suave */
}
.whatsapp-float-red:hover {
    transform: scale(1.1);
    color: var(--secondary-hover);
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 999;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 300px;
    transition: height 0.4s ease;
}

.header.shrunk .header-content {
    height: 80px;
}

.header.shrunk .logo-img {
    height: 64px;
}

.header.shrunk .nav-desktop a {
    font-size: 1rem;
}

.header.shrunk .header-cta {
    padding: 10px 18px;
    font-size: 0.8rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
}

.logo i {
    color: var(--secondary);
    font-size: 1.5rem;
}

.logo strong {
    color: var(--secondary);
}

.logo-img {
    height: 250px;
    width: auto;
    display: block;
    transition: height 0.4s ease;
}

.logo-img-footer {
    height: 150px;
    width: auto;
    display: block;
    filter: brightness(1) invert(0);
}

.footer-contact-phone {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-desktop a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    transition: var(--transition);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.nav-desktop a:hover {
    color: var(--secondary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 16px 20px 24px;
    border-top: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 12px 0;
    font-weight: 600;
    color: var(--primary-dark);
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--secondary);
}

/* === Hero Section === */
.hero {
    padding: 320px 0 60px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-subtitle {
    display: block;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--primary);
    font-style: italic;
}

.hero-title {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.hero-location {
    display: block;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--primary);
    font-style: italic;
}

.hero-location u {
    text-decoration-color: var(--secondary);
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

/* === Hero Contact Box (Destaque do Número) === */
.hero-contact-box {
    background: rgba(26, 42, 94, 0.04);
    border-left: 6px solid var(--secondary);
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
}

.urgency-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.massive-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--secondary);
    display: inline-block;
    line-height: 1.1;
    margin: 5px 0 10px 0;
    text-shadow: 2px 2px 0px rgba(230, 25, 43, 0.1);
}

.response-time {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #2e7d32;
}

/* === Hero Visual Styling - LARGER & BEHIND BADGE === */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
}

.hero-appliances-img {
    width: 100%;
    max-width: 480px; /* LARGER dimension (older max-width was 360px) */
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    z-index: 1; /* BEHIND the badge */
    /* Remove sombras ou bordas antigas */
    box-shadow: none !important;
    border: none !important;
}

.hero-badge-alt {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--secondary);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 6px 25px rgba(230, 25, 43, 0.3);
    z-index: 2; 
}

.badge-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    margin-top: 4px;
    line-height: 1.3;
}

.trust-bar {
    padding: 32px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.trust-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.trust-icon-red {
    background: var(--secondary) !important;
}

.trust-text {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--primary);
}

.trust-text strong {
    font-weight: 700;
}

.section-title {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 48px;
}

.section-title strong {
    font-weight: 800;
}

.section-title em {
    font-style: italic;
}

.services {
    padding: 80px 0;
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-image-rect {
    height: 200px; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px; 
    overflow: hidden;
    background-color: var(--gray-50);
}

.card-appliance-img {
    width: 250px; 
    height: 180px;
    object-fit: contain;
    display: block;
}

.service-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.service-info p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    flex: 1;
}

/* === How It Works / 3 Steps === */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.steps-column {
    display: flex;
    flex-direction: column;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
    position: relative;
}

.step:not(:last-of-type)::after {
    content: '';
    position: absolute;
    left: 28px;
    top: 60px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--gray-200);
}

.step-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.step-icon-red {
    background: var(--secondary) !important;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--primary);
}

.step-content p {
    font-size: 1.05rem;
    color: var(--gray-600);
}

/* Testimonials */
.testimonials-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gray-300);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 1.1rem;
}

.testimonial-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.testimonial-card p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-author span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

/* === Final CTA Section === */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 30%, var(--gray-100) 100%);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    display: none;
}

.cta-final p {
    font-size: 1rem;
    margin-bottom: 32px;
    color: var(--gray-600);
}

.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--primary);
}

.cta-phone i {
    font-size: 1rem;
}

.cta-phone a {
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-final-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.cta-final-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 20px;
}

.cta-final-phone {
    margin-bottom: 20px;
}

.cta-final-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary);
    display: inline-block;
    line-height: 1.1;
    text-shadow: 2px 2px 0px rgba(230, 25, 43, 0.1);
    transition: var(--transition);
}

.cta-final-number:hover {
    color: var(--secondary-hover);
    transform: scale(1.03);
}

.cta-final-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cta-final-benefits span {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-final-action {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-final-trust-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-final-trust-item {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--white);
    border-left: 4px solid var(--secondary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    box-shadow: var(--shadow-sm);
}

.cta-final-btn {
    width: 100%;
    font-size: 1.4rem;
    padding: 24px 36px;
    max-width: 100%;
}

/* === Footer === */
.footer {
    background: var(--primary-dark);
    padding: 60px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-footer {
    color: var(--white);
    margin-bottom: 8px;
}

.logo-footer i {
    color: var(--secondary);
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    font-size: 1rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1rem;
}

.footer-contact ul li i {
    color: var(--secondary);
    width: 16px;
}

.footer-contact ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

/* === Coverage Section === */
.coverage {
    padding: 80px 0;
    background: var(--primary-dark);
    color: var(--white);
}

.coverage .section-title {
    color: var(--white);
    margin-bottom: 12px;
}

.coverage-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.coverage-item:hover {
    background: rgba(230, 25, 43, 0.15);
    border-color: var(--secondary);
}

.coverage-item i {
    color: var(--secondary);
    font-size: 1.05rem;
    flex-shrink: 0;
}

/* === CTA Final Section === */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-top: 4px solid var(--secondary);
}

.cta-final-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.cta-final-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 20px;
}

.cta-final-content .text-red {
    color: var(--secondary);
}

.cta-final-phone {
    margin-bottom: 24px;
}

.cta-final-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.cta-final-number:hover {
    transform: scale(1.05);
    color: var(--secondary-hover);
}

.cta-final-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.cta-final-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.cta-final-benefits span:hover {
    border-color: var(--secondary);
    background: rgba(230, 25, 43, 0.05);
}

.cta-final-benefits span i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.cta-final-action {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-final-trust-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-final-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    padding: 12px 16px;
    background: var(--white);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.cta-final-trust-item i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.cta-final-btn {
    width: 100%;
    font-size: 1.4rem;
    padding: 24px 36px;
    max-width: 100%;
    text-align: center;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        min-height: 280px;
    }

    .hero-contact-box {
        text-align: center;
        border-left: none;
        border-bottom: 6px solid var(--secondary);
        border-radius: 12px;
    }

    .massive-number {
        font-size: 2.2rem;
    }

    .hero-appliances-img {
        max-width: 360px; /* Older max-width for tablet */
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .nav-desktop {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-final-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .cta-final-benefits {
        justify-content: center;
    }

    .cta-final-trust-item {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 640px) {
    body {
        font-size: 17px;
    }

    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        padding: 320px 0 40px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-location {
        font-size: 1.3rem;
    }

    .massive-number {
        font-size: 2rem;
    }

    .hero-contact-box {
        padding: 15px;
    }

    .hero-appliances-img {
        max-width: 280px;
    }

    .badge-number {
        font-size: 1.4rem;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .trust-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 0.9rem;
    }

    .trust-text {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image-rect {
        width: 100%;
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        background-color: var(--gray-50);
    }

    .card-appliance-img {
        width: 160px;
        height: 160px;
        object-fit: contain;
    }

    .service-info h3 {
        font-size: 1.05rem;
    }

    .service-info p {
        font-size: 0.95rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 1rem;
    }

    .testimonial-card h4 {
        font-size: 1.1rem;
    }

    .testimonial-card p {
        font-size: 0.95rem;
    }

    .coverage-subtitle {
        font-size: 1.05rem;
    }

    .coverage-item {
        font-size: 0.95rem;
    }

    .cta-final h2 {
        font-size: 1.6rem;
    }

    .cta-final-number {
        font-size: 2.2rem;
    }

    .cta-final-benefits span {
        font-size: 1rem;
    }

    .cta-final-trust-item {
        font-size: 1rem;
    }

    .cta-final-btn {
        font-size: 1.1rem;
        padding: 18px 24px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
    }

    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .mobile-menu a {
        color: var(--primary-dark);
        font-weight: 700;
        font-size: 1.1rem;
    }

    .hero-visual {
        overflow: visible;
        flex-direction: column;
    }

    .hero-badge-alt {
        position: relative;
        bottom: auto;
        right: auto;
        margin: -20px auto 0;
        display: inline-block;
    }

    .btn-action-red,
    .btn-urgent-red,
    .cta-final-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    body {
        font-size: 16px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .massive-number {
        font-size: 1.8rem;
    }

    .hero-subtitle,
    .hero-location {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .cta-final-number {
        font-size: 1.8rem;
    }

    .cta-final-btn {
        font-size: 1rem;
        padding: 16px 20px;
    }

    .btn-action-red {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}