/* --- 1. RESET E BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-blue: #002B5C;
    --brand-green: #2E7D32;
    --brand-yellow: #FFD700;
    --brand-white: #FFFFFF;
    --brand-gray-light: #F5F5F5;
    --brand-gray-dark: #333333;
    --shadow-brand: 0 4px 6px rgba(0, 43, 92, 0.1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Fallback Otimizado para Inter */
@font-face {
    font-family: 'Inter Fallback';
    src: local('Arial');
    size-adjust: 100%;
    ascent-override: 90%;
    descent-override: 22%;
    line-gap-override: 0%;
}

body {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    color: var(--brand-gray-dark);
    background-color: var(--brand-gray-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- 2. IMAGENS E PERFORMANCE (CLS FIX) --- */
img {
    max-width: 100%;
    height: auto;
    font-style: italic;
    display: block;
}

.hero-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 800 / 333;
    overflow: hidden;
    border-radius: 12px;
    background-color: rgba(0, 43, 92, 0.1);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.service-image {
    position: relative;
    width: 100%;
    aspect-ratio: 500 / 300;
    overflow: hidden;
    background-color: #eee;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.mapa-container {
    width: 100%;
    height: 400px;
    background: #eee;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.mapa-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- 3. TIPOGRAFIA --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    text-rendering: optimizeLegibility;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

strong {
    color: var(--brand-blue);
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* --- 4. HEADER --- */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--brand-white);
    box-shadow: var(--shadow-brand);
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 1rem 0;
    height: 80px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 48px;
}

.logo {
    height: 48px;
    width: auto;
    aspect-ratio: 281 / 91;
}

.nav-desktop {
    display: none;
}

.btn-whatsapp-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
        align-items: center;
    }

    .nav-list {
        display: flex;
        gap: 2rem;
        list-style: none;
    }

    .nav-link {
        color: var(--brand-blue);
        font-weight: 600;
        transition: color 0.3s;
    }

    .nav-link:hover {
        color: var(--brand-green);
    }

    .btn-whatsapp-desktop {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--brand-green);
        color: var(--brand-white);
        padding: 0.75rem 1.5rem;
        border-radius: 5px;
        font-weight: 600;
        transition: all 0.3s;
    }

    .btn-whatsapp-desktop:hover {
        background: #1B5E20;
        transform: translateY(-2px);
    }
}

.menu-toggle {
    display: block;
    font-size: 1.5rem;
    color: var(--brand-blue);
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80vw;
    max-width: 380px;
    height: 100vh;
    background: var(--brand-white);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    padding: 2rem;
    overflow-y: auto;
    visibility: hidden;
}

.mobile-nav.active {
    left: 0;
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-nav-close {
    font-size: 1.5rem;
    color: var(--brand-blue);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--brand-gray-light);
    font-weight: 600;
    color: var(--brand-gray-dark);
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-btn {
    padding: 0.75rem;
    text-align: center;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mobile-btn-whatsapp {
    background: var(--brand-green);
    color: var(--brand-white);
}

.mobile-btn-call {
    background: var(--brand-blue);
    color: var(--brand-white);
}

/* --- 5. HERO SECTION --- */
.hero {
    position: relative;
    padding-top: calc(80px + 2rem);
    padding-bottom: 3rem;
    background-color: var(--brand-blue);
    color: var(--brand-white);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero {
        padding-top: calc(80px + 4rem);
        padding-bottom: 6rem;
    }
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .hero-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.hero-content {
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
        flex: 1;
        min-height: auto;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--brand-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    align-self: center;
}

@media (min-width: 1024px) {
    .hero-badge {
        align-self: flex-start;
    }
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-highlight {
    color: var(--brand-yellow);
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    min-height: 3.6em;
}

@media (min-width: 1024px) {
    .hero-description {
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.hero-image {
    flex: 1;
    width: 100%;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--brand-green);
    color: var(--brand-white);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: #1B5E20;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--brand-blue);
    color: var(--brand-white);
    border: 2px solid var(--brand-blue);
}

.btn-secondary:hover {
    background: #001f42;
    transform: translateY(-2px);
    border-color: var(--brand-white);
}

/* --- 6. SEÇÕES GERAIS --- */
.section {
    padding: 4rem 0;
    content-visibility: auto;
}

.section-light {
    background-color: var(--brand-gray-light);
}

.section-white {
    background-color: var(--brand-white);
}

.section-dark {
    background-color: var(--brand-blue);
    color: var(--brand-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--brand-blue);
}

.section-dark .section-title {
    color: var(--brand-white);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .diferenciais-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.diferencial-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    background: var(--brand-white);
    height: 100%;
}

.diferencial-icon {
    width: 64px;
    height: 64px;
    background: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.diferencial-title {
    font-size: 1.25rem;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
}

/* --- CARROSSEL */
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16/9;
    max-height: 500px;
    background: #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    height: 100%;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background-color: #001f42;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1rem;
    pointer-events: none;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

/* --- ÁREA DE TOQUE (DOTS) --- */
.container-carousel-dots {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 1rem;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    /* Gap removido pois os botões agora são grandes (48px) */
    z-index: 10;
    /* Container ajustado para o tamanho dos novos botões */
    padding: 0 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(2px);
    /* Altura fixa para alinhar */
    height: 48px;
}

/* O Botão "Fantasma" - Área de toque de 48px exigida pelo Google */
.dot {
    width: 48px;
    height: 48px;
    background: transparent;
    /* Invisível */
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* A Bolinha Visual (Pseudo-elemento dentro do botão) */
.dot::after {
    content: '';
    display: block;
    width: 10px;
    /* Mantém o visual delicado */
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dot:hover::after {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

/* Estado Ativo */
.dot.active::after {
    width: 30px;
    /* Estica apenas a parte visual */
    border-radius: 10px;
    background: var(--brand-yellow);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

/* Foco para acessibilidade */
.dot:focus-visible {
    outline: none;
}

.dot:focus-visible::after {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Serviços Grid */
.servicos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .servicos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--brand-white);
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-residencial {
    background: var(--brand-yellow);
    color: var(--brand-blue);
}

.badge-manutencao {
    background-color: #2c1400; 
    color: blue; 
    font-weight: 800;
}

.badge-emergencia {
    background: var(--brand-green);
    color: var(--brand-white);
}

.service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.25rem;
    color: var(--brand-blue);
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--brand-gray-dark);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--brand-green);
    font-weight: 600;
    gap: 0.5rem;
}

/* FAQ e Areas */
.accordion-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    background: var(--brand-white);
}

.accordion-summary {
    cursor: pointer;
    padding: 1.2rem;
    background: var(--brand-gray-light);
    font-weight: 700;
    color: var(--brand-blue);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-summary::-webkit-details-marker {
    display: none;
}

.accordion-summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--brand-yellow);
}

.accordion-item[open] .accordion-summary::after {
    content: "-";
}

.accordion-content {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.areas-grid {
    display: grid;
    /* Cria colunas automaticamente com largura mínima de 300px */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* --- O Card Principal --- */
.area-card {
    background: #ffffff;
    border-radius: 12px; /* Bordas arredondadas modernas */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 
                0 2px 4px -1px rgba(0, 0, 0, 0.03); /* Sombra suave */
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden; /* Garante que nada saia do card */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.area-card:hover {
    transform: translateY(-4px); /* Levanta levemente ao passar o mouse */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
                0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: var(--brand-blue); /* Destaca a borda sutilmente */
}

/* --- Cabeçalho do Card (Cidade) --- */
.area-title {
    background: var(--brand-blue);
    color: var(--brand-white);
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.area-title i {
    color: var(--brand-yellow); /* Ícone amarelo para contraste */
}

/* --- Estilização do Acordeão (<details>) --- */
.area-details {
    width: 100%;
}

.area-details summary {
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 500;
    color: #555;
    background-color: #f8fafc;
    list-style: none; /* Remove o triângulo padrão feio */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
    user-select: none;
}

/* Remove triângulo no Chrome/Safari */
.area-details summary::-webkit-details-marker {
    display: none;
}

.area-details summary:hover {
    background-color: #f1f5f9;
    color: var(--brand-blue);
}

/* Ícone de seta personalizado (+) que vira (x) ou (-) */
.area-details summary::after {
    content: '+'; 
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--brand-blue);
    transition: transform 0.3s ease;
}

.area-details[open] summary {
    border-bottom: 1px solid #e2e8f0;
}

.area-details[open] summary::after {
    transform: rotate(45deg); /* Gira para virar um X */
    content: '+';
}

/* --- Container dos Links (Bairros) --- */
.area-links {
    padding: 1.25rem;
    display: flex;
    flex-wrap: wrap; /* Permite que os itens quebrem linha */
    gap: 0.5rem; /* Espaço entre as tags */
    background: #fff;
    max-height: 400px; /* Limite de altura */
    overflow-y: auto; /* Scroll se tiver muitos bairros */
    scrollbar-width: thin; /* Scrollbar fina (Firefox) */
}

/* Scrollbar personalizada para Webkit (Chrome/Edge) */
.area-links::-webkit-scrollbar {
    width: 6px;
}
.area-links::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.area-links::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

/* --- Estilo dos Links (Tags/Pílulas) --- */
.link-tag {
    text-decoration: none;
    font-size: 0.85rem;
    color: #475569;
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 0.4rem 0.85rem;
    border-radius: 999px; /* Formato pílula */
    transition: all 0.2s ease;
    white-space: nowrap; /* Impede que o texto da tag quebre */
}

.link-tag:hover {
    background-color: var(--brand-blue);
    color: white;
    border-color: var(--brand-blue);
    transform: scale(1.05); /* Leve aumento */
    box-shadow: 0 2px 4px rgba(0,43,92,0.2);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Zoom suave na imagem ao passar o mouse no card */
.service-card:hover .service-image img {
    transform: scale(1.1);
}

/* Badge (Etiqueta) em cima da imagem */
.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.badge {
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.badge-residencial { background-color: var(--brand-green); }
.badge-emergencia { background-color: #dc2626; } /* Vermelho Alerta */

.service-content {
    padding: 1.5rem;
    flex-grow: 1; /* Faz o conteúdo ocupar o espaço restante */
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.25rem;
    color: var(--brand-blue);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem;
    background-color: var(--brand-gray-light);
    color: var(--brand-blue);
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.service-link:hover {
    background-color: var(--brand-blue);
    color: white;
}

.service-link i {
    transition: transform 0.2s;
}

.service-link:hover i {
    transform: translateX(4px); /* Seta move para a direita */
}

/* Parceiros e Footer */
.parceiros-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .parceiros-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .parceiros-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.parceiro-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.parceiro-link {
    color: var(--brand-white);
    font-weight: 700;
    display: block;
    text-align: center;
}

.footer {
    background: var(--brand-blue);
    color: var(--brand-white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--brand-white);
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--brand-green);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.social-link:hover i {
    color: var(--brand-blue);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.contact-icon {
    color: var(--brand-white);
}

.contact-icon.location i {
    color: var(--brand-blue);
}

.floating-buttons {
    position: fixed;
    bottom: 1.5rem;
    z-index: 999;
}

.floating-btn-call {
    left: 1.5rem;
}

.floating-btn-whatsapp {
    right: 1.5rem;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn-whatsapp .floating-btn {
    background: #25D366;
    color: white;
}

.floating-btn-call .floating-btn {
    background: var(--brand-green);
    color: white;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {

    .carousel-container,
    .carousel-slide {
        height: 300px;
        aspect-ratio: auto;
    }

    .carousel-slide img {
        height: 300px;
        object-fit: cover;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .floating-btn-call {
        left: 1rem;
    }

    .floating-btn-whatsapp {
        right: 1rem;
    }
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* SVG Icons - Mantidos do original */
.fas,
.fab,
.far {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    vertical-align: -0.125em;
}

.fa-whatsapp {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
}

.fa-phone,
.fa-phone-alt {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 27.4l50 37.4c-38.7 76.9-101.1 139.3-178 178l-37.4-50c-6.1-8.3-17.6-11.1-27.4-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.9 464-464 0-11.2-7.8-20.9-18.6-23.4z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 27.4l50 37.4c-38.7 76.9-101.1 139.3-178 178l-37.4-50c-6.1-8.3-17.6-11.1-27.4-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.9 464-464 0-11.2-7.8-20.9-18.6-23.4z'/%3E%3C/svg%3E");
}

.fa-bars {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z'/%3E%3C/svg%3E");
}

.fa-times {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 352 512'%3E%3Cpath d='M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 352 512'%3E%3Cpath d='M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z'/%3E%3C/svg%3E");
}

.fa-clock {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm57.1 350.6L224 269.3V128c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v109.3l68.7 68.7c6.3 6.3 6.3 16.5 0 22.8l-22.6 22.6c-6.3 6.3-16.5 6.3-22.8 0z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm57.1 350.6L224 269.3V128c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v109.3l68.7 68.7c6.3 6.3 6.3 16.5 0 22.8l-22.6 22.6c-6.3 6.3-16.5 6.3-22.8 0z'/%3E%3C/svg%3E");
}

.fa-microchip {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M416 48v416c0 26.5-21.5 48-48 48H144c-26.5 0-48-21.5-48-48V48c0-26.5 21.5-48 48-48h224c26.5 0 48 21.5 48 48zm96 58v12a6 6 0 0 1-6 6h-18v34h18a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6h-18v34h18a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6h-18v34h18a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6h-18v12a6 6 0 0 1-6 6h-18v-34h18a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6H0v-12a6 6 0 0 1 6-6h18v-34H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-12a6 6 0 0 1-6-6h18V48a48 48 0 0 1 48-48h224a48 48 0 0 1 48 48v10h18a6 6 0 0 1 6 6zm-336 86h224V80H176v112z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M416 48v416c0 26.5-21.5 48-48 48H144c-26.5 0-48-21.5-48-48V48c0-26.5 21.5-48 48-48h224c26.5 0 48 21.5 48 48zm96 58v12a6 6 0 0 1-6 6h-18v34h18a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6h-18v34h18a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6h-18v34h18a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6h-18v12a6 6 0 0 1-6 6h-18v-34h18a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6H0v-12a6 6 0 0 1 6-6h18v-34H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-34H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-12a6 6 0 0 1-6-6h18V48a48 48 0 0 1 48-48h224a48 48 0 0 1 48 48v10h18a6 6 0 0 1 6 6zm-336 86h224V80H176v112z'/%3E%3C/svg%3E");
}

.fa-user-shield {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath d='M622.3 271.1l-115.2-45a10.9 10.9 0 0 0-12.2 4.1L451.6 289c-43.5-23.7-83.5-62.9-107.6-107l58.3-42.5a10.9 10.9 0 0 0 4.2-12.4l-42-117C362 2.6 354.5-2.6 345.9.9L16.5 125.6a10.9 10.9 0 0 0-6.9 10.3c.7 182.2 92.2 320.1 270.2 374.8 15.3 4.7 31.7 1.4 44.1-8.5l289.4-211.5a10.9 10.9 0 0 0 9-19.6z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath d='M622.3 271.1l-115.2-45a10.9 10.9 0 0 0-12.2 4.1L451.6 289c-43.5-23.7-83.5-62.9-107.6-107l58.3-42.5a10.9 10.9 0 0 0 4.2-12.4l-42-117C362 2.6 354.5-2.6 345.9.9L16.5 125.6a10.9 10.9 0 0 0-6.9 10.3c.7 182.2 92.2 320.1 270.2 374.8 15.3 4.7 31.7 1.4 44.1-8.5l289.4-211.5a10.9 10.9 0 0 0 9-19.6z'/%3E%3C/svg%3E");
}

.fa-map-marked-alt,
.fa-map-signs {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zm0 168c-23.2 0-42-18.8-42-42s18.8-42 42-42 42 18.8 42 42-18.8 42-42 42zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zm0 168c-23.2 0-42-18.8-42-42s18.8-42 42-42 42 18.8 42 42-18.8 42-42 42zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z'/%3E%3C/svg%3E");
}

.fa-chevron-left {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z'/%3E%3C/svg%3E");
}

.fa-chevron-right {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z'/%3E%3C/svg%3E");
}

.fa-arrow-right {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z'/%3E%3C/svg%3E");
}

.fa-city {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath d='M616 192H480V24c0-13.3-10.7-24-24-24H312c-13.3 0-24 10.7-24 24v72h-64V16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v80h-64V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v80H24c-13.3 0-24 10.7-24 24v360c0 17.7 14.3 32 32 32h576c17.7 0 32-14.3 32-32V216c0-13.3-10.7-24-24-24zM128 400c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48zm0-96c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48zm0-96c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48zm192 192c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48zm0-96c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48zm0-96c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48zm192 192c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48zm0-96c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48zm0-96c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath d='M616 192H480V24c0-13.3-10.7-24-24-24H312c-13.3 0-24 10.7-24 24v72h-64V16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v80h-64V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v80H24c-13.3 0-24 10.7-24 24v360c0 17.7 14.3 32 32 32h576c17.7 0 32-14.3 32-32V216c0-13.3-10.7-24-24-24zM128 400c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48zm0-96c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48zm0-96c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48zm192 192c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48zm0-96c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48zm0-96c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48zm192 192c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48zm0-96c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48zm0-96c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48z'/%3E%3C/svg%3E");
}

.fa-map-marker-alt {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z'/%3E%3C/svg%3E");
}

.fa-facebook-f {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z'/%3E%3C/svg%3E");
}

.fa-instagram {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.5 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.9 0-184.9zm-49.1 234.3c-2.4 27.7-16.7 48.2-37.4 68.9-20.7 20.7-41.2 35-68.9 37.4-36.5 1.9-144.3 1.9-180.8 0-27.7-2.4-48.2-16.7-68.9-37.4-20.7-20.7-35-41.2-37.4-68.9-1.9-36.5-1.9-144.3 0-180.8 2.4-27.7 16.7-48.2 37.4-68.9 20.7-20.7 41.2-35 68.9-37.4 36.5-1.9 144.3-1.9 180.8 0 27.7 2.4 48.2 16.7 68.9 37.4 20.7 20.7 35 41.2 37.4 68.9 1.9 36.5 1.9 144.3 0 180.8z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.5 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.9 0-184.9zm-49.1 234.3c-2.4 27.7-16.7 48.2-37.4 68.9-20.7 20.7-41.2 35-68.9 37.4-36.5 1.9-144.3 1.9-180.8 0-27.7-2.4-48.2-16.7-68.9-37.4-20.7-20.7-35-41.2-37.4-68.9-1.9-36.5-1.9-144.3 0-180.8 2.4-27.7 16.7-48.2 37.4-68.9 20.7-20.7 41.2-35 68.9-37.4 36.5-1.9 144.3-1.9 180.8 0 27.7 2.4 48.2 16.7 68.9 37.4 20.7 20.7 35 41.2 37.4 68.9 1.9 36.5 1.9 144.3 0 180.8z'/%3E%3C/svg%3E");
}

.fa-youtube {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z'/%3E%3C/svg%3E");
}