/* ========================================
   MORETTO AUTO CENTER - STYLESHEET
   ========================================
   
   Índice de Seções:
   0. Variáveis de Cores (NOVO)
   1. Reset e Base
   2. Navegação
   3. Hero Principal
   4. Títulos de Seção
   5. Serviços
   6. Sobre Nós
   7. Contato
   8. Footer
   9. Responsivo
   
   ======================================== */

/* ========================================
   0. VARIÁVEIS DE CORES
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Electrolize&family=Russo+One&family=Chakra+Petch:wght@300;400;500;600;700&family=Aldrich&family=Quantico:wght@400;700&display=swap');
:root {
    /* Cores Primárias */
    --vermelho-principal: #e53935;
    --vermelho-escuro: #b71c1c;
    --vermelho-hover: #d32a2a;
    
    /* Backgrounds */
    --bg-principal: #2a2a2a;
    --bg-secundario: #303030;
    --bg-terciario: #353535;
    --bg-card: #3a3a3a;
    
    /* Cores de Texto */
    --texto-principal: #f5f5f5;
    --texto-secundario: #e0e0e0;
    --texto-terciario: #bdbdbd;
    --texto-muted: #9e9e9e;
    
    /* Bordas e Sombras */
    --borda-vermelha: rgba(229, 57, 53, 0.2);
    --sombra-vermelha: rgba(229, 57, 53, 0.4);
    --sombra-vermelha-hover: rgba(229, 57, 53, 0.6);
    
    /* WhatsApp */
    --whatsapp-green: #25d366;
    --whatsapp-dark: #128c7e;
}

/* ========================================
   1. RESET E BASE
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--texto-principal);
    background: var(--bg-principal);
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 90px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========================================
   2. NAVEGAÇÃO
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(42, 42, 42, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--borda-vermelha);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--vermelho-principal), transparent);
    opacity: 0.5;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px var(--sombra-vermelha));
    transition: all 0.3s;
}

.nav-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px var(--sombra-vermelha-hover));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    padding: 10px 20px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: block;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(229, 57, 53, 0.3), transparent);
    transition: left 0.5s;
}

.nav-menu li a:hover::before {
    left: 100%;
}

.nav-menu li a:hover {
    color: var(--vermelho-principal);
    background: rgba(229, 57, 53, 0.1);
}

/* ========================================
   3. HERO PRINCIPAL
   ======================================== */

.hero-main {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, var(--bg-terciario) 0%, var(--bg-principal) 100%);
    /* ADICIONE SUA FOTO: background-image: url('/images/hero-bg.jpg'); */
    background-size: cover;
    background-position: center;
    animation: zoomIn 20s infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(42, 42, 42, 0.7) 100%);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.1), transparent);
    animation: shine 8s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
}



/* ========================================
   TÍTULO HERO - FONTE IGUAL À LOGO
   ======================================== */

.hero-content h1 {
    font-family:  sans-serif;
    font-size: 5em;
    font-weight: 800; /* Extra bold */
    margin-bottom: 25px;
    background: linear-gradient(135deg, #990303 0%, var(--vermelho-principal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
    text-transform: uppercase;
    letter-spacing: 12px; /* Espaçamento bem largo como na logo */
    line-height: 1.1;
    font-stretch: expanded; /* Deixa as letras mais largas */
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 50px;
    opacity: 0.9;
    animation: fadeInUp 1s ease;
    font-weight: 300;
    letter-spacing: 1px;
}

.btn-primary {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--vermelho-principal) 0%, var(--vermelho-escuro) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s;
    box-shadow: 0 15px 40px var(--sombra-vermelha);
    animation: fadeInUp 1.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--sombra-vermelha-hover);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*=============================
 Slideshow Container 
 ===============================*/
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: kenBurns 15s ease-in-out infinite;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Efeito Ken Burns (zoom suave) */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Fallback caso as imagens não carreguem */
.hero-slide {
    background-color: radial-gradient(circle at 30% 50%, var(--bg-terciario) 0%, var(--bg-principal) 100%);
}

/* ========================================
   4. TÍTULOS DE SEÇÃO
   ======================================== */

.section-title {
    text-align: center;
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--vermelho-principal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--vermelho-principal), transparent);
    margin: 30px auto 0;
    border-radius: 5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3em;
    color: var(--texto-muted);
    margin-bottom: 80px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ========================================
   5. SERVIÇOS
   ======================================== */

.servicos {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-principal) 0%, var(--bg-secundario) 100%);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.servico {
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.servico-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(229, 57, 53, 0.05) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid var(--borda-vermelha);
    position: relative;
    overflow: hidden;
}

.servico-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.servico:hover .servico-icon-wrapper::before {
    opacity: 1;
}

.servico:hover .servico-icon-wrapper {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.2) 0%, rgba(229, 57, 53, 0.1) 100%);
    border-color: var(--vermelho-principal);
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px var(--sombra-vermelha);
}

.icone-servico {
    width: 70px;
    height: 70px;
    filter: brightness(0) saturate(100%) invert(42%) sepia(98%) saturate(2072%) hue-rotate(348deg) brightness(92%) contrast(92%);
    transition: all 0.5s;
}

.servico:hover .icone-servico {
    filter: brightness(0) saturate(100%) invert(42%) sepia(98%) saturate(2072%) hue-rotate(348deg) brightness(92%) contrast(92%) drop-shadow(0 0 25px var(--vermelho-principal));
    transform: scale(1.15) rotate(5deg);
}

.servico p {
    color: var(--texto-principal);
    font-size: 1em;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Botão WhatsApp */
.whatsapp-cta {
    text-align: center;
    margin-top: 80px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, var(--whatsapp-dark) 100%);
    color: white;
    padding: 22px 55px;
    font-size: 1.3em;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.7);
}

.btn-whatsapp i {
    font-size: 2em;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ========================================
   6. SOBRE NÓS
   ======================================== */

.sobre-section {
    width: 100%;
    background: linear-gradient(135deg, var(--bg-secundario) 0%, var(--bg-terciario) 50%, var(--bg-secundario) 100%);
    padding: 120px 0;
    border-top: 1px solid var(--borda-vermelha);
    border-bottom: 1px solid var(--borda-vermelha);
    position: relative;
    overflow: hidden;
}

.sobre-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(229, 57, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-top: 80px;
    position: relative;
}

.sobre-imagem {
    position: relative;
}

.foto-sobre {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    background: linear-gradient(135deg, var(--bg-terciario), var(--bg-card));
    border: 2px solid var(--borda-vermelha);
}

.sobre-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.stat-item {
    background: rgba(229, 57, 53, 0.08);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--borda-vermelha);
    transition: all 0.3s;
}

.stat-item:hover {
    background: rgba(229, 57, 53, 0.15);
    border-color: var(--vermelho-principal);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 3em;
    font-weight: 900;
    background: linear-gradient(135deg, var(--vermelho-principal) 0%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 0.95em;
    color: var(--texto-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sobre-texto h3 {
    font-size: 2.5em;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, var(--vermelho-principal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sobre-texto p {
    color: var(--texto-terciario);
    font-size: 1.15em;
    line-height: 2;
    margin-bottom: 25px;
}

.sobre-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(229, 57, 53, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--vermelho-principal);
    transition: all 0.4s;
}

.feature-item:hover {
    background: rgba(229, 57, 53, 0.12);
    transform: translateX(15px);
    box-shadow: 0 10px 30px var(--sombra-vermelha);
}

.feature-item i {
    font-size: 2.8em;
    color: var(--vermelho-principal);
}

.feature-item h4 {
    color: var(--texto-principal);
    font-size: 1.4em;
    margin-bottom: 5px;
    font-weight: 700;
}

.feature-item p {
    color: var(--texto-muted);
    font-size: 1em;
    margin: 0;
}

/* ========================================
   7. CONTATO
   ======================================== */

.contato-section {
    width: 100%;
    background: var(--bg-principal);
    padding: 140px 0 120px 0;
    border-top: 1px solid var(--borda-vermelha);
}

.contato-wrapper {
    margin-top: 80px;
    padding: 60px 0;
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    padding: 0 20px;
}

.contato-card {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.08) 0%, rgba(229, 57, 53, 0.03) 100%);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--borda-vermelha);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    min-height: 320px;
}

.contato-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.contato-card:hover::before {
    opacity: 1;
}

.contato-card:hover {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.15) 0%, rgba(229, 57, 53, 0.08) 100%);
    border-color: var(--vermelho-principal);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--sombra-vermelha);
}

.contato-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--vermelho-principal), var(--vermelho-escuro));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 15px 35px var(--sombra-vermelha);
    transition: all 0.3s;
    flex-shrink: 0;
    pointer-events: none;
}

.contato-card:hover .contato-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 45px var(--sombra-vermelha-hover);
}

.contato-icon i {
    font-size: 2.2em;
    color: white;
}

.contato-card h4 {
    color: var(--texto-principal);
    font-size: 1.3em;
    margin: 10px 0 5px 0;
    font-weight: 700;
    pointer-events: none;
}

/* Texto selecionável */
.texto-selecionavel {
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    cursor: text !important;
    margin: 8px 0 15px 0;
    color: var(--texto-secundario);
    font-size: 1.05em;
    line-height: 1.6;
    padding: 5px 10px;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    word-break: break-word;
}

/* Botão de ação */
.btn-contato-acao {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--vermelho-principal) 0%, var(--vermelho-escuro) 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.95em;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: auto;
    cursor: pointer;
    border: none;
    pointer-events: auto;
    z-index: 10;
    position: relative;
}

.btn-contato-acao:hover {
    background: linear-gradient(135deg, var(--vermelho-hover) 0%, var(--vermelho-escuro) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--sombra-vermelha);
}

.btn-contato-acao:active {
    transform: translateY(-1px);
}

/* Mapa */
.mapa-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    border: 2px solid var(--borda-vermelha);
}

/* ========================================
   8. FOOTER
   ======================================== */

/* ========================================
   8. FOOTER COMPLETO
   ======================================== */

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: var(--texto-secundario);
    padding: 80px 0 0 0;
    border-top: 2px solid var(--borda-vermelha);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(229, 57, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
}

/* Logo e Sobre */
.footer-sobre {
    max-width: 400px;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px var(--sombra-vermelha));
}

.footer-descricao {
    color: var(--texto-muted);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 0.95em;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    transition: all 0.3s;
    border: 2px solid transparent;
}

/* Instagram - Gradiente oficial */
.footer-social a[aria-label="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(188, 24, 136, 0.4);
}

.footer-social a[aria-label="Instagram"]:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(188, 24, 136, 0.6);
}

/* WhatsApp - Verde oficial */
.footer-social a[aria-label="WhatsApp"] {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.footer-social a[aria-label="WhatsApp"]:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Animação de pulso para chamar atenção */
@keyframes socialPulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.05); 
    }
}

.footer-social a {
    animation: socialPulse 3s ease-in-out infinite;
}

.footer-social a:hover {
    animation: none;
}

/* Brilho nos ícones */
.footer-social a::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}



/* Colunas */
.footer-coluna {
    display: flex;
    flex-direction: column;
}

.footer-titulo {
    color: var(--texto-principal);
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-titulo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--vermelho-principal), transparent);
    border-radius: 3px;
}

/* Links */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    color: var(--texto-muted);
    font-size: 0.95em;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.footer-links li i {
    color: var(--vermelho-principal);
    font-size: 0.7em;
}

.footer-links a {
    color: var(--texto-muted);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--vermelho-principal);
    transform: translateX(5px);
}

.footer-icone-svg {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(42%) sepia(98%) saturate(2072%) hue-rotate(348deg) brightness(92%) contrast(92%);
    flex-shrink: 0;
}

.footer-servicos li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-servicos li span {
    color: var(--texto-muted);
    transition: all 0.3s;
}

.footer-servicos li:hover span {
    color: var(--vermelho-principal);
}

.footer-servicos li:hover .footer-icone-svg {
    filter: brightness(0) saturate(100%) invert(42%) sepia(98%) saturate(2072%) hue-rotate(348deg) brightness(92%) contrast(92%) drop-shadow(0 0 5px var(--vermelho-principal));
}

/* Contato */
.footer-contato {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contato li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-contato li i {
    color: var(--vermelho-principal);
    font-size: 1.2em;
    width: 25px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contato li div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-contato strong {
    color: var(--texto-principal);
    font-size: 0.9em;
    font-weight: 600;
}

.footer-contato span {
    color: var(--texto-muted);
    font-size: 0.9em;
    line-height: 1.5;
}

/* Linha Divisória */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--borda-vermelha), transparent);
    margin: 40px 0 30px 0;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(229, 57, 53, 0.1);
}

.footer-bottom p {
    color: var(--texto-muted);
    font-size: 0.9em;
    margin: 8px 0;
}

.footer-bottom strong {
    color: var(--vermelho-principal);
    font-weight: 600;
}

.footer-dev {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-dev i {
    color: var(--vermelho-principal);
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
}

/* Responsivo Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-sobre {
        max-width: 100%;
    }
    
    .footer-logo {
        max-width: 160px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-titulo {
        text-align: center;
    }
    
    .footer-titulo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-contato {
        align-items: center;
    }
    
    .footer-contato li {
        text-align: left;
        max-width: 300px;
    }
}

/* ========================================
   FIM DO FOOTER
   ======================================== */

/* ========================================
   9. RESPONSIVO MOBILE (OTIMIZADO)
   ======================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contato-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* BODY E CONTAINER */
    body {
        padding-top: 60px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* NAVEGAÇÃO */
    .navbar {
        padding: 10px 0;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-logo {
        max-width: 120px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }
    
    .nav-menu li a {
        font-size: 0.75em;
        padding: 6px 10px;
    }
    
    /* HERO */
    .hero-main {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8em;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }
    
    .hero-subtitle {
        font-size: 0.9em;
        margin-bottom: 25px;
    }
    
    .btn-primary {
        padding: 12px 25px;
        font-size: 0.85em;
    }
    
    /* TÍTULOS DE SEÇÃO */
    .section-title {
        font-size: 1.6em;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }
    
    .section-title::after {
        width: 50px;
        height: 2px;
        margin-top: 15px;
    }
    
    .section-subtitle {
        font-size: 0.85em;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    /* SERVIÇOS - 3 COLUNAS */
    .servicos {
        padding: 40px 0;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-bottom: 35px;
    }
    
    .servico-icon-wrapper {
        width: 65px;
        height: 65px;
        border-radius: 12px;
        margin-bottom: 10px;
    }
    
    .icone-servico {
        width: 35px;
        height: 35px;
    }
    
    .servico p {
        font-size: 0.75em;
        line-height: 1.2;
    }
    
    .whatsapp-cta {
        margin-top: 35px;
    }
    
    .btn-whatsapp {
        padding: 12px 25px;
        font-size: 0.85em;
        gap: 10px;
    }
    
    .btn-whatsapp i {
        font-size: 1.3em;
    }
    
    /* SOBRE - COMPACTO */
    .sobre-section {
        padding: 40px 0;
    }
    
    .sobre-content {
        margin-top: 30px;
        gap: 30px;
    }
    
    .foto-sobre {
        height: 250px;
        border-radius: 15px;
    }
    
    .sobre-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 20px;
    }
    
    .stat-item {
        padding: 15px;
        border-radius: 12px;
    }
    
    .stat-number {
        font-size: 1.6em;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 0.75em;
    }
    
    .sobre-texto h3 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }
    
    .sobre-texto p {
        font-size: 0.85em;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    
    .sobre-features {
        margin-top: 25px;
        gap: 12px;
    }
    
    .feature-item {
        padding: 15px;
        border-radius: 10px;
        gap: 12px;
    }
    
    .feature-item i {
        font-size: 1.6em;
    }
    
    .feature-item h4 {
        font-size: 0.95em;
        margin-bottom: 3px;
    }
    
    .feature-item p {
        font-size: 0.75em;
        line-height: 1.4;
    }
    
    /* CONTATO - 2 COLUNAS */
    .contato-section {
        padding: 40px 0;
    }
    
    .contato-wrapper {
        margin-top: 30px;
        padding: 20px 0;
    }
    
    .contato-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
        padding: 0;
    }
    
    .contato-card {
        padding: 20px 15px;
        border-radius: 12px;
        min-height: auto;
        gap: 8px;
    }
    
    .contato-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }
    
    .contato-icon i {
        font-size: 1.5em;
    }
    
    .contato-card h4 {
        font-size: 0.95em;
        margin: 3px 0;
    }
    
    .texto-selecionavel {
        font-size: 0.8em;
        min-height: auto;
        padding: 3px;
        margin: 3px 0 8px 0;
        line-height: 1.4;
    }
    
    /* Remove cor azul dos links de telefone */
    .texto-selecionavel a {
        color: inherit !important;
        text-decoration: none !important;
    }
    
    .btn-contato-acao {
        padding: 8px 20px;
        font-size: 0.75em;
        border-radius: 15px;
    }
    
    .mapa-container {
        border-radius: 12px;
        margin-top: 15px;
    }
    
    .mapa-container iframe {
        height: 250px;
        border-radius: 12px;
    }
    
    /* FOOTER - 2 COLUNAS */
    .footer {
        padding: 35px 0 0 0;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 35px;
        margin-bottom: 30px;
    }
    
    /* Logo e redes sociais - centralizado */
    .footer-sobre {
        order: 1;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-logo {
        max-width: 130px;
        margin: 0 auto 15px;
    }
    
    .footer-descricao {
        font-size: 0.8em;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .footer-social {
        justify-content: center;
        gap: 15px;
    }
    
    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 1.2em;
    }
    
    /* Container para Links e Serviços lado a lado */
    .footer-links-servicos-wrapper {
        order: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        width: 100%;
    }
    
    /* Força Links Rápidos e Serviços a ficarem lado a lado */
    .footer-content > .footer-coluna:nth-child(2) {
        order: 2;
    }
    
    .footer-content > .footer-coluna:nth-child(3) {
        order: 3;
    }
    
    .footer-coluna {
        text-align: left;
        width: 100%;
    }
    
    .footer-titulo {
        font-size: 1em;
        margin-bottom: 15px;
        padding-bottom: 10px;
        text-align: left;
    }
    
    .footer-titulo::after {
        left: 0;
        transform: none;
        width: 40px;
    }
    
    /* Alinhamento correto das listas */
    .footer-links {
        align-items: flex-start;
        gap: 10px;
        padding-left: 0;
        list-style: none;
    }
    
    .footer-links li {
        font-size: 0.78em;
        display: flex;
        align-items: center;
        gap: 8px;
        padding-left: 0;
        text-align: left;
        width: 100%;
    }
    
    .footer-links li i {
        flex-shrink: 0;
        width: 12px;
    }
    
    /* Ícones SVG no mobile - alinhamento */
    .footer-icone-svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }
    
    .footer-servicos li {
        gap: 8px;
        align-items: center;
        justify-content: flex-start;
    }
    
    .footer-servicos li span {
        flex: 1;
        text-align: left;
    }
    
    /* Contato - centralizado e último */
    .footer-contato-coluna {
        order: 4;
        text-align: center;
        width: 100%;
        margin-top: 10px;
    }
    
    .footer-contato-coluna .footer-titulo {
        text-align: center;
    }
    
    .footer-contato-coluna .footer-titulo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contato {
        align-items: center;
        gap: 18px;
        padding-left: 0;
    }
    
    .footer-contato li {
        text-align: left;
        max-width: 280px;
        gap: 12px;
        display: flex;
        align-items: flex-start;
    }
    
    .footer-contato li i {
        font-size: 1em;
        width: 20px;
        flex-shrink: 0;
    }
    
    .footer-contato strong {
        font-size: 0.8em;
    }
    
    .footer-contato span {
        font-size: 0.75em;
        line-height: 1.4;
    }
    
    .footer-divider {
        margin: 25px 0 15px 0;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom p {
        font-size: 0.75em;
        padding: 0 10px;
        margin: 5px 0;
    }
    
    .footer-dev {
        font-size: 0.75em;
    }
}
@media (max-width: 480px) {
    /* Telas muito pequenas - EXTRA COMPACTO */
    
    .hero-content h1 {
        width: 0.1px;   /* define a largura */
        height: auto;   /* mantém a proporção */
        display: block; /* evita espaços indesejados abaixo da imagem */
        margin: 10 px auto; /* centraliza a imagem dentro do h1 (opcional) */

    }
    
    .hero-content h1 img {
        width: 360px;   /* diminui o tamanho */
        height: auto;   /* mantém proporção */
        display: inline-block;
    }
    
    
    .hero-subtitle {
        font-size: 0.8em;
    }


    .hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: kenBurns 15s ease-in-out infinite;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.slide:hover img {
  transform: scale(0.8); /* Ampliação de 20% */
}
    
    .section-title {
        font-size: 1.4em;
    }
    
    .section-subtitle {
        font-size: 0.8em;
    }
    
    /* Serviços - 3 COLUNAS */
    .servicos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .servico-icon-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .icone-servico {
        width: 30px;
        height: 30px;
    }
    
    .servico p {
        font-size: 0.65em;
    }
    
    .btn-whatsapp {
        padding: 10px 20px;
        font-size: 0.75em;
        gap: 8px;
    }
    
    /* Sobre */
    .foto-sobre {
        height: 200px;
    }
    
    .sobre-stats {
        gap: 8px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 1.4em;
    }
    
    .stat-label {
        font-size: 0.7em;
    }
    
    .sobre-texto h3 {
        font-size: 1.2em;
    }
    
    .sobre-texto p {
        font-size: 0.8em;
    }
    
    .feature-item {
        padding: 12px;
        gap: 10px;
    }
    
    .feature-item i {
        font-size: 1.4em;
    }
    
    .feature-item h4 {
        font-size: 0.85em;
    }
    
    .feature-item p {
        font-size: 0.7em;
    }
    
    /* Contato - 2 COLUNAS */
    .contato-grid {
        gap: 10px;
    }
    
    .contato-card {
        padding: 18px 12px;
    }
    
    .contato-icon {
        width: 45px;
        height: 45px;
    }
    
    .contato-icon i {
        font-size: 1.3em;
    }
    
    .contato-card h4 {
        font-size: 0.9em;
    }
    
    .texto-selecionavel {
        font-size: 0.75em;
    }
    
    .btn-contato-acao {
        padding: 7px 18px;
        font-size: 0.7em;
    }
    
    .mapa-container iframe {
        height: 220px;
    }
    
    /* ========================================
       FOOTER 480PX - TOTALMENTE REORGANIZADO
       ======================================== */
    
    .footer {
        padding: 25px 0 0 0;
    }
    
    .footer-content {
        display: block;
        margin-bottom: 20px;
    }
    
    /* 1. Logo e Social - Centralizado */
    .footer-sobre {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .footer-logo {
        max-width: 110px;
        margin: 0 auto 10px;
    }
    
    .footer-descricao {
        font-size: 0.75em;
        line-height: 1.5;
        margin-bottom: 12px;
        padding: 0 15px;
    }
    
    .footer-social {
        justify-content: center;
        gap: 12px;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1.1em;
    }
    
    /* 2. Container para Links e Serviços lado a lado */
    .footer-links-servicos-container {
        display: flex;
        justify-content: space-between;
        gap: 15px;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    /* Links Rápidos - Lado Esquerdo */
    .footer-content > .footer-coluna:nth-child(2) {
        flex: 1;
        min-width: 0;
    }
    
    /* Nossos Serviços - Lado Direito */
    .footer-content > .footer-coluna:nth-child(3) {
        flex: 1;
        min-width: 0;
    }
    
    .footer-coluna {
        text-align: left;
    }
    
    .footer-titulo {
        font-size: 0.85em;
        margin-bottom: 10px;
        padding-bottom: 6px;
        text-align: left;
    }
    
    .footer-titulo::after {
        width: 30px;
        height: 2px;
        left: 0;
        transform: none;
    }
    
    .footer-links {
        align-items: flex-start;
        gap: 6px;
        padding-left: 0;
        list-style: none;
    }
    
    .footer-links li {
        font-size: 0.7em;
        display: flex;
        align-items: center;
        gap: 5px;
        text-align: left;
    }
    
    .footer-links li i {
        flex-shrink: 0;
        width: 8px;
        font-size: 0.65em;
    }
    
    .footer-icone-svg {
        width: 11px;
        height: 11px;
        flex-shrink: 0;
    }
    
    .footer-servicos li {
        gap: 5px;
        align-items: center;
    }
    
    .footer-servicos li span {
        flex: 1;
        text-align: left;
        font-size: 0.7em;
    }
    
    /* 3. Contato - Centralizado */
    .footer-content > .footer-coluna:nth-child(4) {
        text-align: center;
        width: 100%;
        clear: both;
    }
    
    .footer-content > .footer-coluna:nth-child(4) .footer-titulo {
        text-align: center;
        font-size: 0.85em;
    }
    
    .footer-content > .footer-coluna:nth-child(4) .footer-titulo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contato {
        align-items: center;
        gap: 10px;
        padding-left: 0;
    }
    
    .footer-contato li {
        text-align: left;
        max-width: 280px;
        gap: 10px;
    }
    
    .footer-contato li i {
        font-size: 0.9em;
        width: 16px;
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    .footer-contato strong {
        font-size: 0.72em;
        display: block;
        margin-bottom: 2px;
    }
    
    .footer-contato span {
        font-size: 0.68em;
        line-height: 1.4;
    }
    
    .footer-divider {
        margin: 16px 0 10px 0;
    }
    
    .footer-bottom {
        padding: 10px 0;
    }
    
    .footer-bottom p {
        font-size: 0.65em;
        padding: 0 10px;
        margin: 3px 0;
        line-height: 1.4;
    }
    
    .footer-dev {
        font-size: 0.65em;
    }
}

/* ========================================
   LANDSCAPE (CELULAR DEITADO) - ULTRA COMPACTO
   ======================================== */

@media (max-width: 915px) and (max-height: 500px) and (orientation: landscape) {
    /* Ajustes gerais */
    body {
        padding-top: 35px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    /* Navbar ultra compacta */
    .navbar {
        padding: 4px 0;
    }
    
    .nav-logo {
        max-width: 70px;
    }
    
    .nav-menu {
        gap: 2px;
    }
    
    .nav-menu li a {
        font-size: 0.6em;
        padding: 3px 8px;
    }
    
    /* Hero super reduzido */
    .hero-main {
        height: 75vh;
        min-height: 250px;
    }

    
    .hero-content h1 {
        width: 0.1px;   /* define a largura */
        height: auto;   /* mantém a proporção */
        display: block; /* evita espaços indesejados abaixo da imagem */
        margin: 20 px auto; /* centraliza a imagem dentro do h1 (opcional) */
        text-align: center

    }
    
    .hero-content h1 img {
        width: 360px;   /* diminui o tamanho */
        height: auto;   /* mantém proporção */
        display: inline-block;
        margin: 0 auto; /* centraliza na tela */
    }
    
    .hero-subtitle {
        font-size: 0.7em;
        margin-bottom: 12px;
    }
    
    .btn-primary {
        padding: 6px 20px;
        font-size: 0.7em;
    }
    
    /* Títulos */
    .section-title {
        font-size: 1.3em;
        margin-bottom: 6px;
    }
    
    .section-title::after {
        margin-top: 8px;
        height: 2px;
        width: 60px;
    }
    
    .section-subtitle {
        font-size: 0.7em;
        margin-bottom: 20px;
    }
    
    /* Serviços */
    .servicos {
        padding: 25px 0;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .servico-icon-wrapper {
        width: 45px;
        height: 45px;
        border-radius: 10px;
    }
    
    .icone-servico {
        width: 25px;
        height: 25px;
    }
    
    .servico p {
        font-size: 0.6em;
        line-height: 1.2;
    }
    
    .whatsapp-cta {
        margin-top: 20px;
    }
    
    .btn-whatsapp {
        padding: 6px 20px;
        font-size: 0.7em;
        gap: 6px;
    }
    
    .btn-whatsapp i {
        font-size: 1.2em;
    }
    
    /* Sobre */
    .sobre-section {
        padding: 25px 0;
    }
    
    .sobre-content {
        margin-top: 20px;
        gap: 25px;
        grid-template-columns: 1fr 1fr;
    }
    
    .foto-sobre {
        height: 180px;
        border-radius: 15px;
    }
    
    .sobre-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 12px;
    }
    
    .stat-item {
        padding: 10px;
        border-radius: 10px;
    }
    
    .stat-number {
        font-size: 1.3em;
        margin-bottom: 3px;
    }
    
    .stat-label {
        font-size: 0.65em;
    }
    
    .sobre-texto h3 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }
    
    .sobre-texto p {
        font-size: 0.7em;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    
    .sobre-features {
        margin-top: 15px;
        gap: 8px;
    }
    
    .feature-item {
        padding: 10px;
        gap: 10px;
        border-radius: 10px;
    }
    
    .feature-item i {
        font-size: 1.4em;
    }
    
    .feature-item h4 {
        font-size: 0.8em;
        margin-bottom: 2px;
    }
    
    .feature-item p {
        font-size: 0.65em;
        line-height: 1.3;
    }
    
    /* Contato */
    .contato-section {
        padding: 25px 0;
    }
    
    .contato-wrapper {
        margin-top: 20px;
        padding: 15px 0;
    }
    
    .contato-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .contato-card {
        padding: 15px 10px;
        min-height: 160px;
        border-radius: 12px;
        gap: 6px;
    }
    
    .contato-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 6px;
    }
    
    .contato-icon i {
        font-size: 1.3em;
    }
    
    .contato-card h4 {
        font-size: 0.8em;
        margin: 3px 0;
    }
    
    .texto-selecionavel {
        font-size: 0.68em;
        min-height: 25px;
        padding: 2px;
        margin: 3px 0 6px 0;
    }
    
    .btn-contato-acao {
        padding: 6px 16px;
        font-size: 0.68em;
        border-radius: 12px;
    }
    
    .mapa-container iframe {
        height: 180px;
        border-radius: 12px;
    }
    
    /* Footer - Ultra Compacto */
    .footer {
        padding: 20px 0 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
        gap: 20px;
        margin-bottom: 15px;
    }
    
    .footer-logo {
        max-width: 90px;
    }
    
    .footer-descricao {
        font-size: 0.65em;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .footer-social {
        gap: 8px;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 0.9em;
    }
    
    .footer-titulo {
        font-size: 0.8em;
        margin-bottom: 8px;
        padding-bottom: 5px;
    }
    
    .footer-titulo::after {
        width: 30px;
        height: 2px;
    }
    
    .footer-links {
        gap: 5px;
    }
    
    .footer-links li {
        font-size: 0.63em;
        gap: 5px;
    }
    
    .footer-links li i {
        font-size: 0.6em;
        width: 8px;
    }
    
    .footer-icone-svg {
        width: 10px;
        height: 10px;
    }
    
    .footer-servicos li span {
        font-size: 0.63em;
    }
    
    .footer-contato {
        gap: 6px;
    }
    
    .footer-contato li {
        gap: 6px;
    }
    
    .footer-contato li i {
        font-size: 0.8em;
        width: 14px;
    }
    
    .footer-contato strong {
        font-size: 0.63em;
        margin-bottom: 1px;
    }
    
    .footer-contato span {
        font-size: 0.6em;
        line-height: 1.3;
    }
    
    .footer-divider {
        margin: 12px 0 8px 0;
    }
    
    .footer-bottom {
        padding: 10px 0;
    }
    
    .footer-bottom p {
        font-size: 0.6em;
        margin: 2px 0;
        line-height: 1.3;
    }
    
    .footer-dev {
        font-size: 0.6em;
    }
}

a {
    color: inherit !important;        /* Herda a cor do texto do elemento pai */
    text-decoration: none !important; /* Remove sublinhado */
  }

  /* Opcional: remove o sublinhado ao passar o mouse/tocar */
  a:hover,
  a:active,
  a:focus {
    text-decoration: none !important;
    color: inherit !important;
  }

  /* Remove o outline azul ao focar (comum em toques) */
  a:focus {
    outline: none !important;
  }

/* ========================================
   FIM DO CSS RESPONSIVO
   ======================================== */