/* assets/css/style.css (Revisado, Melhorado e Comentado) */

/*
================================================================
ÍNDICE DE ESTILOS
================================================================
1. CONFIGURAÇÕES GLOBAIS
2. ANIMAÇÕES E EFEITOS GLOBAIS
3. HEADER E NAVEGAÇÃO
4. SLIDER DE TOPO (HERO)
5. BARRA SUPERIOR
6. PLANOS (LAYOUT v3)
7. SEÇÃO EMPRESAS
8. SEÇÃO COBERTURA (v3)
9. SEÇÃO AJUDA (v2)
10. AJUSTES RESPONSIVOS (MOBILE-FIRST)
================================================================
*/


/* ============================================================== */
/* ===== 1. CONFIGURAÇÕES GLOBAIS =============================== */
/* ============================================================== */

:root {
    --brand-blue: #2563EB;
    --brand-amber: #F59E0B;
    --brand-red: #c11d1d;      /* Vermelho principal */
    --brand-red-dark: #c11d1d; /* Vermelho mais escuro para hover */
    --brand-green: #16a34a;     /* Verde para botões de contratação */
    --brand-green-dark: #15803d;/* Verde escuro para hover */
    --text-charcoal: #263238;  /* Cinza chumbo para textos */
    --bg-light: #FFFFFF;      /* Fundo branco */
    --bg-soft-gray: #F8F9FA;  /* Cinza bem suave para seções */
    --border-light: #E0E0E0;   /* Cor das bordas */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF; /* Fundo do corpo branco por padrão */
    color: var(--text-charcoal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* ============================================================== */
/* ===== 2. ANIMAÇÕES E EFEITOS GLOBAIS ========================= */
/* ============================================================== */

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ========================================================= */
/* ===== 3. HEADER E NAVEGAÇÃO ============================= */
/* ========================================================= */

header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid #E0E0E0;
}

.header-scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

#mobile-menu {
    background-color: #F8F9FA;
    border-left: 1px solid #E0E0E0;
    transition: transform 0.3s ease-in-out;
}

.logo {
    height: 6rem; /* 40px */
    width: auto;
}

/* ============================================================== */
/* ===== 4. ESTILOS DO SLIDER DE TOPO (HERO SLIDER) ======== */
/* ============================================================== */

.slider-container {
    position: relative;
    width: 100%;
    height: 80vh; 
    min-height: 500px;
    max-height: 850px;
    overflow: hidden;
    background-color: #e0e0e0; /* Cor de fundo enquanto as imagens carregam */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    z-index: 1;
    transform: scale(1.05);
    transition: transform 7s ease-out;
}
.slide.active .slide-image {
    transform: scale(1);
}

/* --- Controles de Navegação (Setas e Bolinhas) --- */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: white;
    width: 24px;
    border-radius: 6px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 1;
}

.slider-arrow.left {
    left: 20px;
}

.slider-arrow.right {
    right: 20px;
}


/* ============================================================== */
/* ===== 4.1. ESTILOS RESPONSIVOS DO SLIDER (NOVO) ========== */
/* ============================================================== */

/* Por padrão (desktop-first), escondemos a imagem de mobile. */
.mobile-image {
    display: none;
}

/* --- Media Query para Telas Pequenas (Celulares) --- */
/* Quando a tela tiver 768px de largura ou menos... */
@media (max-width: 768px) {
    
    /* 1. Esconda a imagem de desktop */
    .desktop-image {
        display: none;
    }

    /* 2. Mostre a imagem de mobile */
    .mobile-image {
        display: block;
    }

    /* Opcional: Ajustar a altura do slider no mobile */
    .slider-container {
        height: 90vh; /* Ocupa 90% da altura da tela do celular */
        min-height: 400px;
        max-height: 700px;
    }
}


/* ============================================================== */
/* ===== 5. BARRA SUPERIOR DE LINKS RÁPIDOS (TOPO DO HEADER) ==== */
/* ============================================================== */

.top-bar {
    background-color: #c11d1d; 
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #E0E0E0; 
    font-size: 0.875rem;
    font-weight: 500;
    
}

.top-bar-link {
    color: #ffffff; 
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s ease-in-out;
}

.top-bar-link:hover {
    color: #ffcccc;
}

/* ============================================================== */
/* ===== 6. ESTILOS DOS PLANOS (LAYOUT REESTRUTUTURADO v3) ======= */
/* ============================================================== */

.plan-card-v3 {
    background-color: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card-v3:hover {
    transform: translateY(-5px);
    border-color: #9CA3AF;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.07), 0 4px 6px -4px rgb(0 0 0 / 0.07);
}

/* REMOÇÃO: O padding-top foi removido para garantir o alinhamento */
.plan-card-v3.highlighted {
    border-color: var(--brand-red);
}

/* AJUSTE: Posicionando a faixa para fora do card */
.plan-v3-highlight-banner {
    position: absolute;
    top: -0.875rem; /* Move a faixa para cima, para fora do card */
    left: 50%;
    transform: translateX(-50%);
    width: auto; /* Largura automática baseada no conteúdo */
    padding: 0.25rem 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    border-radius: 0.375rem; /* Bordas arredondadas para o novo formato */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.plan-v3-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid #F3F4F6;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.plan-v3-speed-number {
    font-size: 2.25rem;
    font-weight: 900;
    color: #111827;
    line-height: 1;
}

.plan-v3-speed-unit {
    font-size: 1.25rem;
    font-weight: 700;
    color: #374151;
    margin-left: 0.25rem;
}

.plan-v3-included {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-red);
}

.plan-v3-price-block {
    margin-bottom: 1.5rem;
}

.plan-v3-price-block p:first-child {
    color: #111827;
}

.plan-v3-price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.plan-v3-price-value {
    font-size: 2.25rem;
    font-weight: 800;
}

.plan-v3-price-period {
    font-size: 1.125rem;
    font-weight: 600;
    color: #4B5563;
}

.plan-v3-price-subtitle {
    font-size: 0.875rem;
    color: #6B7280;
    margin-top: 0.25rem;
}

.plan-v3-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.875rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
}

/* AJUSTE: Botões de planos agora são verdes */
.plan-v3-button {
    background-color: var(--brand-green);
    color: #FFFFFF;
}
.plan-v3-button:hover {
    background-color: var(--brand-green-dark);
}

.plan-v3-divider {
    border-color: #F3F4F6;
    margin: 1.5rem 0;
}

.plan-v3-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #374151;
    font-size: 0.9rem;
    flex-grow: 1;
}


/* =================================================================== */
/* ===== 6.3 ESTILOS DA SEÇÃO DE ADD-ONS (STREAMING v2) ============ */
/* =================================================================== */

.streaming-section-v2 {
    background-color: #F8F9FA; /* Fundo cinza bem claro, para separar da seção branca */
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    overflow: hidden; /* Essencial para o efeito de carrossel */
}

.streaming-v2-title {
    font-size: 2.25rem; /* 36px */
    font-weight: 900;
    color: var(--text-charcoal);
    line-height: 1.2;
}

.streaming-v2-subtitle {
    margin-top: 1rem;
    font-size: 1.125rem; /* 18px */
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .streaming-v2-subtitle {
        margin-left: 0;
        margin-right: 0;
    }
}

.streaming-v2-button {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--brand-red);
    color: #FFFFFF;
    font-weight: 700;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.streaming-v2-button:hover {
    background-color: var(--brand-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(236, 50, 55, 0.3);
}

/* --- Animação do Carrossel de Logos --- */

.streaming-v2-logos-container {
    position: relative;
    width: 100%;
    height: 100px; /* Altura fixa para o container dos logos */
    display: flex;
    align-items: center;
    /* Máscara de gradiente para suavizar as bordas */
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.streaming-v2-logos-track {
    display: flex;
    position: absolute;
    left: 0;
    align-items: center;
    animation: scroll-logos 30s linear infinite;
}

@keyframes scroll-logos {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* Anima até a metade (onde começa a cópia) */
}

.logo-item {
    padding: 0 30px; /* Espaçamento entre os logos */
    flex-shrink: 0;
}

.logo-item img {
    height: 48px; /* Altura padrão para os logos */
    max-width: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
    /* Cores originais, como solicitado */
}

.logo-item img:hover {
    opacity: 0.75; /* Opacidade diminuída em 25% */
    transform: scale(1.1); /* Aumenta um pouco o tamanho */
}





/* =================================================================== */
/* ===== 7. ESTILOS DA PÁGINA PARA EMPRESAS (v3 - PROFISSIONAL) ==== */
/* =================================================================== */

.page-empresas-v3 {
    padding-top: 6rem; /* 96px - Para compensar o header no mobile */
}
@media (min-width: 1024px) { /* lg */
    .page-empresas-v3 {
        padding-top: 8rem; /* 128px - Para compensar o header no desktop */
    }
}

.page-empresas-v3 .container {
    position: relative;
    z-index: 2;
}

/* --- Animações --- */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out both;
    animation-delay: var(--delay, 0ms);
}


/* --- Seção Hero --- */
.empresas-hero-v3 {
    background-color: #111827; /* Cinza bem escuro */
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.empresas-hero-v3::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--brand-red), transparent 25%),
        radial-gradient(circle at 80% 70%, #4a4d9c, transparent 25%);
    opacity: 0.15;
    filter: blur(120px);
    z-index: 1;
}

.empresas-hero-button-v3 {
    margin-top: 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--brand-red);
    color: #FFFFFF;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 20px -5px rgba(236, 50, 55, 0.4);
}

.empresas-hero-button-v3:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 25px -5px rgba(236, 50, 55, 0.5);
}


/* --- Seção Clientes --- */
.empresas-clients-v3 {
    background-color: #FFFFFF;
    overflow: hidden;
}
.client-logo-slider {
    position: relative;
    width: 100%;
    margin-top: 2rem;
    height: 50px;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.client-logo-track {
    display: flex;
    position: absolute;
    left: 0;
    align-items: center;
    animation: scroll-logos 40s linear infinite;
}
@keyframes scroll-logos {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.client-logo-track .logo-item {
    padding: 0 40px;
    flex-shrink: 0;
}
.client-logo-track .logo-item img {
    height: 32px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s ease;
}
.client-logo-track .logo-item img:hover {
    filter: none;
    opacity: 1;
}


/* --- Seção Pilares --- */
.pilar-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.05);
}
.pilar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    border-color: var(--brand-red);
}
.pilar-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem auto;
    background-color: #FEF2F2; /* Vermelho bem claro */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red);
    transition: all 0.3s ease;
}
.pilar-card:hover .pilar-icon {
    background-color: var(--brand-red);
    color: #FFFFFF;
    transform: rotate(15deg) scale(1.1);
}
.pilar-icon i {
    width: 32px;
    height: 32px;
}


/* --- Seção Comparativo --- */
.empresas-comparativo-v3 {
    background-color: #F9FAFB;
}
.comparativo-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 1rem;
    padding: 2.5rem;
    height: 100%;
}
.comparativo-card.brasnett-card {
    border-width: 2px;
    border-color: var(--brand-red);
    box-shadow: 0 10px 15px -3px rgba(236, 50, 55, 0.1);
}


/* --- Seção CTA Final v4 (Dinâmica e Visual) --- */
.empresas-cta-final-v4 {
    background-color: #111827; /* Fundo escuro para a seção */
    padding: 5rem 0;
    overflow: hidden;
}

.cta-card-v4 {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .cta-card-v4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cta-content-left {
    position: relative;
    z-index: 2;
    text-align: center;
}
@media (min-width: 1024px) {
    .cta-content-left {
        text-align: left;
    }
}

.cta-main-icon {
    width: 4rem;
    height: 4rem;
    color: var(--brand-red);
    margin: 0 auto 1rem auto;
    stroke-width: 1.5;
}
@media (min-width: 1024px) {
    .cta-main-icon {
        margin: 0 0 1rem 0;
    }
}

.cta-content-left h2 {
    position: relative;
    display: inline-block;
}

.cta-content-left h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--brand-red);
    border-radius: 2px;
}
@media (min-width: 1024px) {
    .cta-content-left h2::after {
        left: 0;
        transform: translateX(0);
    }
}

.cta-main-button {
    margin-top: 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--brand-red);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(236, 50, 55, 0.4);
}

.cta-main-button:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 25px -5px rgba(236, 50, 55, 0.5);
}

.cta-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #9CA3AF;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-contact-link:hover {
    color: #FFFFFF;
}

.cta-image-right {
    position: relative;
    z-index: 1;
}

.cta-image-right img {
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: auto;
    object-fit: cover;
}



/* =================================================================== */
/* ===== 7.1 ESTILOS DO HERO SLIDER (PÁGINA EMPRESAS) ============== */
/* =================================================================== */

.empresas-hero-slider {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background-color: #111827;
}

.empresas-hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.empresas-hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-background-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center center;
    transform: scale(1.05);
    transition: transform 7s ease-out;
    z-index: 1;
}
.empresas-hero-slide.active .slide-background-image {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.8) 0%, rgba(17, 24, 39, 0.4) 50%, rgba(17, 24, 39, 0.2) 100%);
    z-index: 2;
}

.slide-content-container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
}
.slide-content-container.text-left { justify-content: flex-start; text-align: left; }
.slide-content-container.text-center { justify-content: center; text-align: center; }
.slide-content-container.text-right { justify-content: flex-end; text-align: right; }

/* Ajusta margem do subtítulo para texto centralizado */
.slide-content-container.text-center .slide-text-wrapper p {
    margin-left: auto;
    margin-right: auto;
}
/* Ajusta margem do subtítulo para texto à direita */
.slide-content-container.text-right .slide-text-wrapper p {
    margin-left: auto;
    margin-right: 0;
}

.empresas-hero-button-v3 {
    margin-top: 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.4);
}
.empresas-hero-button-v3:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.5);
}

/* --- Controles de Navegação (já estilizados em outra seção, mas garantindo) --- */
.empresas-hero-slider .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
}
.empresas-hero-slider .slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 1;
}
.empresas-hero-slider .slider-arrow.left { left: 20px; }
.empresas-hero-slider .slider-arrow.right { right: 20px; }

.empresas-hero-slider .slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.empresas-hero-slider .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}
.empresas-hero-slider .slider-dot.active {
    background-color: white;
    width: 24px;
    border-radius: 6px;
}






/* ============================================================== */
/* ===== 8. ESTILOS DA SEÇÃO COBERTURA (v3 - BRASNETT ID) ======== */
/* ============================================================== */

.section-cobertura-v3 {
    background-color: #F3F4F6;
    background-blend-mode: overlay;
    background-size: 400px;
    position: relative;
    overflow: hidden;
}

.cobertura-card-v3 {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.cobertura-card-v3.shake {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}

.cobertura-card-v3.loading {
    border-color: var(--brand-red);
}
.cobertura-card-v3.status-success {
    border-color: #22C55E;
}
.cobertura-card-v3.status-error {
    border-color: #F59E0B;
}

.card-header h2 {
    color: #1F2937;
}
.card-header p {
    color: #6B7280;
}
.card-header i {
    color: var(--brand-red);
}

.card-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    pointer-events: none;
}

.cep-input-v3 {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid #D1D5DB;
    background-color: #F9FAFB;
    color: #1F2937;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    outline: none;
}

.cep-input-v3:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(236, 50, 55, 0.2);
    background-color: #FFFFFF;
}

.cep-button-v3 {
    padding: 1rem;
    border: none;
    background-image: linear-gradient(to right, var(--brand-red-dark) 0%, var(--brand-red) 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cep-button-v3:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(236, 50, 55, 0.4);
}

.loading-animation {
    padding: 2rem 0;
    color: #6B7280;
}
.radar-scanner {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem auto;
    position: relative;
    background-image: 
        repeating-linear-gradient(rgba(0,0,0,0.05) 0 1px, transparent 1px 100%),
        repeating-linear-gradient(90deg, rgba(0,0,0,0.05) 0 1px, transparent 1px 100%);
    background-size: 30px 30px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.08);
}
.radar-scanner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform-origin: 0 0;
    transform: rotate(0deg);
    background: linear-gradient(45deg, transparent 50%, rgba(236, 50, 55, 0.5) 100%);
    animation: radar-sweep 2.5s linear infinite;
}
@keyframes radar-sweep {
    to { transform: rotate(360deg); }
}
.loading-text {
    font-weight: 600;
    letter-spacing: 0.1em;
    animation: pulse-text 1.5s infinite;
    color: #374151;
}
@keyframes pulse-text {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

#cep-result-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInResult 0.5s ease-out;
}
@keyframes fadeInResult {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.result-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.result-header h3 {
    color: #1F2937;
}

.status-success .result-header i { color: #22C55E; }
.status-error .result-header i { color: #F59E0B; }

.result-text {
    color: #6B7280;
    max-width: 400px;
    line-height: 1.6;
}

.result-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.result-button {
    padding: 0.875rem;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: all 0.2s ease;
    color: #FFFFFF;
    background-color: var(--brand-red);
}
.result-button:hover {
    background-color: var(--brand-red-dark);
}

.check-again-button {
    background: transparent;
    border: none;
    color: #6B7280;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem;
}
.check-again-button:hover {
    color: #1F2937;
    text-decoration: underline;
}

/* ============================================================== */
/* ===== 9. ESTILOS DA SEÇÃO AJUDA (v2 - INTERATIVO) ============ */
/* ============================================================== */

.section-ajuda-v2 {
    background-image: linear-gradient(135deg, var(--brand-red-dark) 0%, var(--brand-red) 100%);
    position: relative;
    overflow: hidden;
}

.section-ajuda-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.ajuda-v2-content-left {
    position: relative;
    z-index: 1;
}

.ajuda-v2-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 0.875rem 2rem;
    background-color: #FFFFFF;
    color: var(--brand-red);
    font-weight: 700;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.ajuda-v2-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.ajuda-v2-interactive-faq {
    position: relative;
    z-index: 1;
    background: rgba(0,0,0,0.1);
    border-radius: 1rem;
    padding: 1.5rem;
}

.faq-question-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 1rem 1.25rem;
    background-color: rgba(255,255,255,0.05);
    color: #FFFFFF;
    border: 1px solid transparent;
    border-left: 4px solid transparent;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question-item:hover {
    background-color: rgba(255,255,255,0.1);
    border-left-color: rgba(255,255,255,0.5);
}

.faq-question-item.active {
    background-color: #FFFFFF;
    color: var(--brand-red);
    border-left-color: var(--brand-red);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-question-item .icon-arrow {
    transition: transform 0.3s ease;
}

.faq-question-item.active .icon-arrow {
    transform: translateX(5px);
}

.faq-answer-box {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: #FFFFFF;
    color: #374151;
    border-radius: 0.5rem;
    min-height: 150px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.faq-answer-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.ajuda-v2-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* NOVO: Estilos para a foto da equipe de suporte */
.ajuda-v2-team-photo {
    width: 100%;                  
    max-width: 75%;             /* ALTERADO: Aumentamos o tamanho máximo de 400px para 450px */
    height: auto;                 
    border-radius: 0.5rem;        /* ALTERADO: Reduzimos o raio de 1rem (16px) para 0.5rem (8px) para uma curva mais suave */
    object-fit: cover;            
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25); 
    transition: all 0.3s ease;    
}

.ajuda-v2-team-photo:hover {
    transform: scale(1.03);      
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* ============================================================== */
/* ===== 11. BANNER DE COOKIES (LGPD) =========================== */
/* ============================================================== */

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-light); /* Fundo branco */
    color: var(--text-charcoal); /* Texto cinza escuro */
    padding: 1.5rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1); /* Sombra mais suave */
    border-top: 1px solid var(--border-light); /* Borda superior sutil */
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    
    /* Animação de entrada e saída */
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

#cookie-banner.cookie-banner-hidden {
    transform: translateY(200%); /* Esconde o banner para baixo */
}

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--brand-red); /* Cor do link em vermelho */
    font-weight: 600;
    text-decoration: none;
    transition: text-decoration 0.2s ease;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-button {
    background-color: var(--brand-red);
    color: #FFFFFF;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap; /* Garante que o texto não quebre */
}

.cookie-button:hover {
    background-color: var(--brand-red-dark);
}

/* Ajustes para telas de celular */
@media (max-width: 768px) {
    #cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .cookie-button {
        width: 100%;
        margin-top: 1rem;
    }
}



/* ============================================================== */
/* ===== 10. AJUSTES RESPONSIVOS (MOBILE-FIRST) =============== */
/* ============================================================== */

/* Para telas menores que 768px (tablets e celulares) */
@media (max-width: 768px) {

    /* --- Ajuste do Header --- */
    .logo {
        height: 6rem; /* 32px - Logo menor no mobile */
    }

    /* Garante que o botão "Assine Já" não quebre a linha */
    header .bg-red-600 { /* Seletor específico para o botão vermelho */
        white-space: nowrap;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* --- Ajustes da Seção Topo (Hero) --- */
    .slider-container {
        height: 80vh; /* Ocupa mais a tela no mobile */
        min-height: 450px;
    }

    .slide-content h1 {
        font-size: 2.5rem; /* Reduz o tamanho da fonte do título principal */
    }

    .slide-content p {
        font-size: 1rem; /* Reduz o tamanho da fonte do subtítulo */
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
    }
    
    /* --- Centralização de Botões --- */
    
    /* Centraliza conteúdo da coluna esquerda da seção de Ajuda */
    .ajuda-v2-content-left {
        text-align: center;
    }

    /* Centraliza conteúdo da coluna de texto da seção Empresas */
    .section-empresas .text-white {
        text-align: center;
    }

    /* Centraliza o botão de Solicitar Proposta */
    .section-empresas .text-white > a {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* --- Ajustes na Seção de Cobertura --- */
    .cobertura-card-v3 {
        padding: 1.5rem; /* Diminui o padding interno do card */
    }

    .card-header h2 {
        font-size: 1.875rem; /* Reduz o título no card de cobertura */
    }
}

/* Para telas muito pequenas, como celulares em modo retrato */
@media (max-width: 480px) {
    .top-bar {
        display: none; /* Opcional: Esconde a barra do topo em telas muito pequenas */
    }

    .plan-v3-header, .plan-v3-price-block {
        /* Ajusta o tamanho das fontes nos cards de plano */
        font-size: 90%;
    }
}

/* ============================================================== */
/* ===== ESTILOS DA PÁGINA DE POLÍTICA DE PRIVACIDADE ========== */
/* ============================================================== */

.privacy-policy-section {
    background-color: #FFFFFF;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.privacy-content {
    max-width: 800px; /* Define uma largura máxima para melhor legibilidade */
    margin: 0 auto;
    color: #374151; /* Cor de texto cinza escuro */
    line-height: 1.8; /* Espaçamento entre linhas confortável */
}

.privacy-content h1 {
    font-size: 2.5rem; /* 40px */
    font-weight: 900; /* Black */
    color: #111827; /* Quase preto */
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--brand-red);
    padding-bottom: 1rem;
}

.privacy-content .last-updated {
    font-size: 0.875rem; /* 14px */
    color: #6B7280;
    margin-bottom: 2.5rem;
}

.privacy-content h2 {
    font-size: 1.75rem; /* 28px */
    font-weight: 700;
    color: #1F2937;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-content h3 {
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
    color: #1F2937;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-content p {
    margin-bottom: 1.5rem;
}

.privacy-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-content ul li {
    margin-bottom: 0.75rem;
}

.privacy-content a {
    color: var(--brand-red);
    font-weight: 600;
    text-decoration: none;
    transition: text-decoration 0.2s ease;
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* Ajustes para telas de celular */
@media (max-width: 768px) {
    .privacy-content h1 {
        font-size: 2rem; /* 32px */
    }
    .privacy-content h2 {
        font-size: 1.5rem; /* 24px */
    }
}

@media (min-width: 1024px) { /* lg */
    .page-empresas {
        padding-top: 8rem; /* 128px - Para compensar o header no desktop */
    }
}

/* ============================================================== */
/* ===== 12. ESTILOS DA PÁGINA DE APLICATIVOS (v2.2) ============ */
/* ============================================================== */

.page-aplicativos {
    padding-top: 6rem; /* 96px */
}
@media (min-width: 1024px) { /* lg */
    .page-aplicativos {
        padding-top: 8rem; /* 128px */
    }
}

/* --- Seção Hero --- */
.app-hero {
    background-color: #111827;
    position: relative;
    overflow: hidden;
}

.app-hero .container {
    padding-top: 4rem;
    padding-bottom: 0; /* Removido o padding inferior do container */
}
@media (min-width: 768px) {
    .app-hero .container {
        padding-bottom: 0;
    }
}


.app-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, var(--brand-red), transparent 30%),
        radial-gradient(circle at 90% 80%, #4a4d9c, transparent 30%);
    opacity: 0.1;
    filter: blur(120px);
    z-index: 0;
}

.app-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 4rem; /* Adicionado padding inferior para o conteúdo de texto */
}

/* NOVO BLOCO DE CÓDIGO - SUBSTITUA O ANTIGO .app-hero-mockup E .app-hero-image */
.app-hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-end; /* ALINHA A IMAGEM NA PARTE INFERIOR */
    height: 100%; /* Garante que a coluna ocupe toda a altura */
    position: relative;
    z-index: 1;
}

.app-hero-image img {
    /* O tamanho da imagem agora é controlado pelo PHP/HTML */
    object-fit: contain;
    object-position: bottom;
}


.app-hero a img {
    transition: transform 0.3s ease;
}
.app-hero a:hover img {
    transform: scale(1.05);
}

/* --- Seção de Destaques (TV e Câmeras) --- */
.app-main-features {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #FFFFFF;
}

.main-feature-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 1024px) { /* lg */
    .main-feature-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
    .main-feature-card.reverse .main-feature-image {
        order: 2;
    }
}

.main-feature-image img {
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.main-feature-image:hover img {
    transform: scale(1.03);
}

.main-feature-content .feature-icon-app {
    margin: 0 0 1.5rem 0;
}

.feature-icon-app {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem auto;
    background-image: linear-gradient(135deg, var(--brand-red-dark) 0%, var(--brand-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.feature-icon-app i {
    width: 32px;
    height: 32px;
}

/* --- Seção Download --- */
.app-download {
    /* A cor de fundo agora é controlada pelo PHP */
}

.download-card-app-v2 {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-card-app-v2:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--brand-red);
    transform: translateY(-5px);
}

.store-icon-v2 {
    width: 48px;
    height: 48px;
    color: #FFFFFF;
    flex-shrink: 0;
}

.download-arrow-app {
    color: #9CA3AF;
    margin-left: auto;
    transition: all 0.3s ease;
    width: 28px;
    height: 28px;
}

.download-card-app-v2:hover .download-arrow-app {
    color: var(--brand-red);
    transform: scale(1.1);
}

/* =================================================================== */
/* ===== 13. ESTILOS DA SEÇÃO DO INSTAGRAM (v3 - API Integrada) ==== */
/* =================================================================== */

.instagram-feed-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--brand-red);
    color: #FFFFFF;
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px -3px rgba(236, 50, 55, 0.3);
}

.instagram-feed-button:hover {
    background-color: var(--brand-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px -5px rgba(236, 50, 55, 0.4);
}

/* --- Grade de Posts Automática --- */
.instagram-card-v2 {
    display: block;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 1 / 1; /* Garante que os cards sejam sempre quadrados */
    background-color: #e5e7eb; /* Cor de fundo para o loading */
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.07);
    transition: all 0.3s ease;
}

.instagram-card-v2:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.instagram-card-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha o card sem distorcer */
    transition: transform 0.3s ease;
}

.instagram-card-v2:hover img {
    transform: scale(1.1);
}

.instagram-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1rem;
}

.instagram-card-v2:hover .instagram-card-overlay {
    opacity: 1;
}

.instagram-card-overlay i {
    color: #FFFFFF;
    width: 32px;
    height: 32px;
}


/* ============================================================== */
/* ===== 10. ESTILOS DA SEÇÃO ONDE ESTAMOS ====================== */
/* ============================================================== */

.map-section-container {
    position: relative;
    width: 100%;
    height: 700px; /* Altura da seção */
    overflow: hidden;
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* A propriedade 'filter' foi removida para deixar o mapa com cores vivas. */
    z-index: 1;
}

.map-background iframe {
    pointer-events: none; /* Impede que o usuário interaja com o mapa no fundo */
}

.info-card-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alinha o card à esquerda */
    padding: 0 5%; /* Espaçamento das bordas da tela */
}

.info-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 450px; /* Largura máxima do card */
    width: 100%;
    border: 1px solid #e5e7eb;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.info-card-title {
    font-size: 1.5rem;
    font-weight: 800; /* Extra-bold */
    color: #1f2937;
    line-height: 1.2;
}

.info-card-details {
    margin-top: 1.5rem;
}

#store-address {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.details-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.map-link {
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    color: var(--brand-red, #c11d1d);
}

.map-link.primary {
    color: #1e40af; /* Um azul para diferenciar, ajuste se necessário */
}

.map-link:hover {
    text-decoration: underline;
}

/* --- Media Query para Telas Pequenas (Celulares) --- */
@media (max-width: 768px) {
    .map-section-container {
        height: auto; /* Altura automática para o conteúdo caber */
    }

    .info-card-container {
        justify-content: center; /* Centraliza o card no mobile */
        padding: 1.5rem;
        /* Remove o alinhamento de item para o card não esticar */
        align-items: flex-start; 
    }

    .map-background {
        /* Garante que o mapa tenha uma altura mínima no fundo */
        min-height: 500px;
        height: 100%;
    }
    
    .info-card {
        padding: 1.5rem;
        margin-top: 4rem; /* Distância do topo */
        margin-bottom: 4rem; /* Distância da base */
    }

    .info-card-title {
        font-size: 1.25rem;
    }
}


/* ====================================================== */
/* == CSS ADICIONAL PARA ÍCONES DO INSTAGRAM (VÍDEO/CARROSSEL) == */
/* ====================================================== */

.instagram-card-v2 .instagram-card-icon {
    position: absolute;
    top: 1rem;      /* 16px */
    right: 1rem;     /* 16px */
    z-index: 10;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 9999px; /* circular */
    padding: 0.5rem; /* 8px */
    pointer-events: none; /* Garante que o clique vá para o link por baixo */
}

.instagram-card-v2 .instagram-card-icon svg {
    width: 1.5rem;  /* 24px */
    height: 1.5rem; /* 24px */
}

