/* ===================================
   Estilos Principais - Tudo Mais Personalizados
   =================================== */

/* Font Face com display swap para performance */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Inter'), local('Inter-Regular');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Inter Medium'), local('Inter-Medium');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Inter SemiBold'), local('Inter-SemiBold');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Inter Bold'), local('Inter-Bold');
}

/* Variáveis de Cor */
:root {
    --brand-primary-50: #e0f7fe;
    --brand-primary-100: #b3eafe;
    --brand-primary-300: #66d9f9;
    --brand-primary-400: #33cbf6;
    --brand-primary-500: #01AFEF;
    --brand-primary-600: #019fd8;
    --brand-primary-700: #0186b8;
    --brand-secondary-50: #fff4e6;
    --brand-secondary-100: #ffe0b3;
    --brand-secondary-300: #ffb366;
    --brand-secondary-400: #ff9b4d;
    --brand-secondary-500: #F68635;
    --brand-secondary-600: #e77420;
    --brand-secondary-700: #d15e0c;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Variáveis especiais para Trust Bar e Testimonials (Laranja) */
    --trust-orange-50: #fff7ed;
    --trust-orange-100: #ffedd5;
    --trust-orange-300: #fdba74;
    --trust-orange-400: #fb923c;
    --trust-orange-500: #f97316;
    --trust-orange-600: #ea580c;
    --trust-orange-700: #c2410c;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    overflow-x: hidden;
    /* Otimizações de renderização */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Classe de utilidade para evitar overflow em mobile */
.is-mobile {
    position: relative;
}

/* Utilitários */
.text-brand {
    color: var(--brand-primary-500) !important;
}

.bg-brand {
    background-color: var(--brand-primary-500) !important;
}

/* Header */
.header-main {
    background: transparent;
    padding: 1rem 0;
    z-index: 1000;
}

.header-main.scrolled {
    background: var(--brand-primary-500);
    box-shadow: 0 4px 20px rgba(1, 175, 239, 0.2);
    padding: 0.5rem 0;
}

.logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-fallback {
    width: 40px;
    height: 40px;
    background: var(--brand-primary-500);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.company-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-left: 12px;
}

.header-main.scrolled .company-name {
    color: white;
}

.header-main:not(.scrolled) .company-name {
    color: white;
}

/* Navegação Principal */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--brand-primary-500) !important;
}

/* Links Sociais */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a,
.social-links-footer a {
    font-size: 1.25rem;
    text-decoration: none;
}

.social-links a:hover,
.social-links-footer a:hover {
    text-decoration: none;
}

/* ===================================
   NAVBAR BOOTSTRAP - Migração Completa
   =================================== */

/* Navbar Bootstrap Customizado */
.navbar {
    padding: 0rem 0;
    transition: padding 0.3s ease;
}

.header-main.scrolled .navbar {
    padding: 0rem 0;
}

/* Brand - Logo e Nome */
.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900) !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover {
    opacity: 0.8;
}

/* Botão Toggle Bootstrap */
.navbar-toggler {
    border: none !important;
    padding: 0.5rem;
    background: transparent;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler-icon {
    width: 24px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFFFFF' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Menu Links */
.navbar-nav {
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--brand-primary-500);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Layout Desktop - Navegação Centralizada */
@media (min-width: 992px) {
    .navbar-collapse > div {
        display: flex;
        width: 100%;
        align-items: center;
    }

    .navbar-nav {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        margin-left: auto;
    }

    /* Links sempre brancos no desktop */
    .navbar-nav .nav-link {
        color: white !important;
        font-weight: 600;
    }

    .navbar-nav .nav-link:hover {
        color: var(--brand-primary-100) !important;
    }

    /* Ícones sociais sempre brancos no desktop */
    .social-links a {
        color: white !important;
    }

    .social-links a:hover {
        color: var(--brand-primary-100) !important;
        background: rgba(255, 255, 255, 0.1);
    }
}

/* Social Links no Navbar */
.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-links a {
    color: var(--brand-primary-500);
    font-size: 1.4rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
}

.social-links a:hover {
    background: rgba(1, 175, 239, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
}

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

@media (max-width: 991.98px) {
    /* Navbar Collapse Mobile */
    .navbar-collapse {
        background: white;
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 0.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    /* Menu Links Mobile */
    .navbar-nav {
        text-align: center;
        gap: 0;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid var(--gray-200);
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link {
        padding: 1rem 0.5rem !important;
        display: block;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    /* Social Links Mobile */
    .social-links {
        justify-content: center;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--gray-200);
    }

    /* Ajustes de Logo Mobile */
    .company-name {
        font-size: 1rem;
    }

    .logo {
        width: 35px;
        height: 35px;
    }

    /* Navbar Mobile Padding */
    .navbar {
        padding: 0.8rem 0;
    }

    /* Aumentar área de toque */
    .navbar-toggler {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-nav .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .social-links a {
        min-width: 48px;
        min-height: 48px;
    }

    .navbar-collapse.show {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    /* Reverter centralização em mobile */
    .navbar-collapse > div {
        display: block !important;
    }

    .navbar-nav {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .social-links {
        margin-left: 0 !important;
    }

    /* Links cinza escuro no menu mobile */
    .navbar-nav .nav-link {
        color: var(--gray-700) !important;
    }

    .navbar-nav .nav-link:hover {
        color: var(--brand-primary-500) !important;
    }

    /* Ícones sociais azuis no mobile */
    .social-links a {
        color: var(--brand-primary-500) !important;
    }

    .social-links a:hover {
        color: var(--brand-primary-600) !important;
        background: rgba(1, 175, 239, 0.1);
    }

    /* Fundo sempre branco em mobile quando aberto */
    .header-main .navbar-collapse {
        background: white;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar-collapse {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .company-name {
        font-size: 1.15rem;
    }
}

/* Desktop Pequeno (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .company-name {
        font-size: 1.1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.95rem;
    }

    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

/* Focus Visible para Acessibilidade */
.navbar-toggler:focus-visible,
.navbar-nav .nav-link:focus-visible,
.social-links a:focus-visible {
    outline: 2px solid var(--brand-primary-500);
    outline-offset: 2px;
    border-radius: 4px;
}

.social-links a:focus-visible {
    text-decoration: none;
}

/* Estados visited e active dos links sociais */
.social-links a:visited,
.social-links a:active {
    text-decoration: none;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128c7e;
    color: white;
}

/* ===================================
   BOTÃO STICKY MOBILE CTA - METODOLOGIA BEM
   =================================== */

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    display: none;
    opacity: 1;
}

.cta-sticky:not([style*="display: block"]) {
    pointer-events: none;
    z-index: -1;
}

.cta-sticky__button {
    width: 100%;
    background: var(--brand-primary-500);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(1, 175, 239, 0.3);
    min-height: 44px; /* Área mínima de toque */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cta-sticky__button:hover {
    background: var(--brand-primary-600);
    box-shadow: 0 6px 20px rgba(1, 175, 239, 0.4);
}

.cta-sticky__button:focus {
    outline: 2px solid var(--brand-primary-300);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(1, 175, 239, 0.2);
}

.cta-sticky__button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(1, 175, 239, 0.3);
}

.cta-sticky__icon {
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.cta-sticky__text {
    font-weight: 600;
}

/* Mostrar sticky button apenas em mobile */
@media (max-width: 768px) {
    .cta-sticky--mobile {
        display: block;
    }
}

/* Estado desabilitado para botões */
.btn-cta:disabled,
.btn-submit:disabled,
.cta-sticky__button:disabled {
    background: var(--gray-300);
    color: var(--gray-500);
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

/* Estado de carregamento */
.btn-cta.loading,
.btn-submit.loading,
.cta-sticky__button.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn-cta.loading::after,
.btn-submit.loading::after,
.cta-sticky__button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
}

/* Hero Section - Otimizada para LCP */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    /* Otimizações de performance */
    contain: layout style paint;
    will-change: auto;
    max-width: 100vw;
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Otimizações para CLS */
    aspect-ratio: 16 / 9;
    /* Otimizações de renderização */
    transform: translateZ(0);
    backface-visibility: hidden;
    max-width: 100%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.2), rgba(0,0,0,0.2), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.badge-promo {
    display: inline-block;
    background: var(--brand-primary-500);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(1, 175, 239, 0.3);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.875rem);
    color: #e5e7eb;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.btn-cta {
    background: var(--brand-primary-500);
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(1, 175, 239, 0.3);
    font-size: 1rem;
}

.btn-cta:hover {
    background: var(--brand-primary-600);
    box-shadow: 0 6px 25px rgba(1, 175, 239, 0.4);
}

.btn-cta:focus {
    outline: 2px solid var(--brand-primary-300);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(1, 175, 239, 0.2);
}

.btn-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(1, 175, 239, 0.3);
}

/* Seção Emocional */
.emotional-section {
    background: white;
}

.problems-box {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 2rem;
}

.problem-item {
    font-size: 1.125rem;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.solution-box {
    background: var(--brand-primary-50);
    border-left: 4px solid var(--brand-primary-500);
    padding: 2rem;
    border-radius: 0 12px 12px 0;
}

/* Seção de Serviços */
.services-section {
    background: var(--gray-50);
}

.service-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.img-placeholder {
    width: 100%;
    height: 320px;
    background: var(--brand-primary-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary-600);
    font-size: 1.125rem;
    border-radius: 12px;
}

.feature-list li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--gray-700);
}

/* Seção de Garantia */
.guarantee-section {
    background: linear-gradient(135deg, var(--brand-primary-500), var(--brand-primary-600));
}

.guarantee-items {
    font-size: 1.1rem;
    margin: 2rem 0;
}

.guarantee-items > div {
    padding: 0.5rem 0;
}

/* Seção de Depoimentos */
.testimonial-card {
    height: 100%;
    border: 1px solid var(--gray-200);
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.avatar-circle {
    width: 48px;
    height: 48px;
    background: var(--brand-primary-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

/* Formulário de Contato */
.contact-section {
    background: var(--gray-50);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand-primary-500);
    box-shadow: 0 0 0 0.2rem rgba(1, 175, 239, 0.25);
}

.form-check-input:checked {
    background-color: var(--brand-primary-500);
    border-color: var(--brand-primary-500);
}

.form-check-input:focus {
    border-color: var(--brand-primary-500);
    box-shadow: 0 0 0 0.2rem rgba(1, 175, 239, 0.25);
}

.btn-submit {
    background: var(--brand-primary-500);
    border: none;
    padding: 14px 24px;
    font-weight: 600;
}

.btn-submit:hover {
    background: var(--brand-primary-600);
    box-shadow: 0 6px 25px rgba(1, 175, 239, 0.4);
}

.btn-submit:focus {
    outline: 2px solid var(--brand-primary-300);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(1, 175, 239, 0.2);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(1, 175, 239, 0.3);
}

/* Garantir área mínima de toque para todos os botões */
.btn-cta,
.btn-submit,
.cta-sticky__button {
    min-height: 44px;
    min-width: 44px;
    /* Otimização de performance */
    contain: layout style;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Classes para lazy loading */
.lazy-load {
    opacity: 0;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Placeholder para imagens não carregadas */
.img-placeholder {
    background: linear-gradient(90deg, var(--gray-200) 25%, transparent 37%, var(--gray-200) 63%);
    background-size: 400% 100%;
}

/* Otimizações de performance para elementos críticos */
.header-main,
.hero-section,
.hero-content {
    will-change: auto;
    transform: translateZ(0);
}

/* Otimização de scroll para mobile */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    body {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ===================================
   MELHORIAS DE ACESSIBILIDADE - BOTÕES
   =================================== */

/* Melhor visibilidade para estado de foco */
.btn-cta:focus-visible,
.btn-submit:focus-visible,
.cta-sticky__button:focus-visible {
    outline: 3px solid var(--brand-primary-300);
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(1, 175, 239, 0.2);
}

/* Estado ativo mais claro */
.btn-cta:active,
.btn-submit:active,
.cta-sticky__button:active {
    background: var(--brand-primary-700);
}

/* Modo de alto contraste */
@media (prefers-contrast: high) {
    .btn-cta,
    .btn-submit,
    .cta-sticky__button {
        border: 2px solid var(--brand-primary-700);
        font-weight: 700;
    }
}

/* Redução de movimento para usuários sensíveis */
@media (prefers-reduced-motion: reduce) {
    .btn-cta,
    .btn-submit,
    .cta-sticky__button,
    .cta-sticky {
        transition: none;
    }

    .btn-cta:hover,
    .btn-submit:hover,
    .cta-sticky__button:hover {
        transform: none;
    }
}

/* ===================================
   FOOTER PROFISSIONAL B2B
   =================================== */

/* Estrutura Principal do Footer */
.footer-professional {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #e2e8f0;
    position: relative;
}

.footer-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary-500), var(--brand-primary-600), var(--brand-primary-500));
}

/* Seção Principal */
.footer-main {
    background: transparent;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

/* Branding da Empresa */
.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-logo-fallback {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--brand-primary-500), var(--brand-primary-600));
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(1, 175, 239, 0.3);
}

.footer-company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--brand-primary-400);
    margin-bottom: 0;
    font-weight: 500;
}

.footer-description p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Credenciais e Certificações */
.footer-credentials {
    margin-top: 1.5rem;
}

.credential-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #94a3b8;
    font-size: 0.875rem;
}

.credential-item i {
    color: var(--brand-primary-500);
    width: 16px;
    margin-right: 0.5rem;
}

/* Títulos das Seções */
.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-primary-500), var(--brand-primary-600));
    border-radius: 1px;
}

/* Seção de Contato */
.footer-contact {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.contact-item:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(1, 175, 239, 0.3);
}

.contact-item i {
    color: var(--brand-primary-500);
    font-size: 1.25rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    width: 20px;
    text-align: center;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    color: #f8fafc;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--brand-primary-400);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--brand-primary-300);
    text-decoration: underline;
}

.contact-item span {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Links Úteis */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0;
}

.footer-links a::before {
    content: '▶';
    color: var(--brand-primary-500);
    font-size: 0.7rem;
    margin-right: 0.75rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand-primary-400);
    padding-left: 0.5rem;
}

.footer-links a:hover::before {
    transform: translateX(4px);
}

/* Redes Sociais */
.footer-social {
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: #cbd5e1;
}

.social-link:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(1, 175, 239, 0.3);
    color: var(--brand-primary-400);
}

.social-link i {
    font-size: 1.25rem;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
    color: var(--brand-primary-500);
}

.social-link span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Links de Políticas */
.footer-policies {
    margin-top: 1.5rem;
}

.policy-title {
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

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

.policy-links li {
    margin-bottom: 0.5rem;
}

.policy-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.policy-links a:hover {
    color: var(--brand-primary-400);
    text-decoration: underline;
}

/* Barra de Copyright */
.footer-bottom {
    background: rgba(15, 23, 42, 0.8);
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.copyright-text p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
}

.divider {
    margin: 0 0.75rem;
    color: rgba(148, 163, 184, 0.5);
}

/* Badges do Footer */
.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--brand-primary-500), var(--brand-primary-600));
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(1, 175, 239, 0.3);
    transition: transform 0.3s ease;
}

.badge-item i {
    margin-right: 0.375rem;
}

/* Seção de Confiança */
.footer-trust {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9));
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.trust-content {
    max-width: 100%;
}

.trust-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

.trust-item i {
    font-size: 2rem;
    color: var(--brand-primary-500);
    margin-bottom: 0.75rem;
    background: rgba(1, 175, 239, 0.1);
    padding: 1rem;
    border-radius: 50%;
    border: 2px solid rgba(1, 175, 239, 0.2);
}

.trust-item:hover i {
    background: rgba(1, 175, 239, 0.2);
    border-color: rgba(1, 175, 239, 0.4);
}

.trust-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
}

.trust-disclaimer {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   RESPONSIVIDADE DO FOOTER
   =================================== */

@media (max-width: 992px) {
    .footer-professional {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .trust-icons {
        gap: 1.5rem;
    }

    .footer-badges {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-brand .d-flex {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo,
    .footer-logo-fallback {
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }

    .trust-icons {
        gap: 1rem;
    }

    .trust-item {
        min-width: 100px;
    }

    .trust-item i {
        font-size: 1.5rem;
        padding: 0.75rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-item i {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .footer-main {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .trust-icons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .copyright-text {
        text-align: center;
        margin-bottom: 1rem;
    }
}

/* Personalização Bootstrap */
.btn-primary {
    background-color: var(--brand-primary-500);
    border-color: var(--brand-primary-500);
}

.btn-primary:hover {
    background-color: var(--brand-primary-600);
    border-color: var(--brand-primary-600);
}

/* Smooth Scroll */
/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Ajustes de Tipografia */
.display-5 {
    font-weight: 700 !important;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.6;
}

/* ===================================
   MELHORIAS DE ACESSIBILIDADE E CROSS-BROWSER
   =================================== */

/* Suporte para navegadores antigos */
.footer-professional {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/* Transições suaves para navegadores antigos */
.contact-item,
.social-link,
.footer-links a,
.trust-item i,
.badge-item {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

/* Gradientes com fallback */
.footer-professional {
    background: #0f172a; /* fallback */
    background: -webkit-linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    background: -moz-linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.footer-logo-fallback {
    background: var(--brand-primary-500); /* fallback */
    background: -webkit-linear-gradient(135deg, var(--brand-primary-500), var(--brand-primary-600));
    background: -moz-linear-gradient(135deg, var(--brand-primary-500), var(--brand-primary-600));
    background: linear-gradient(135deg, var(--brand-primary-500), var(--brand-primary-600));
}

/* Flexbox com fallback */
.footer-brand .d-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: left !important;
}

.contact-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.social-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

/* Transform com prefixos */
.contact-item:hover,
.social-link:hover,
.trust-item:hover i,
.badge-item:hover {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}

.social-link:hover {
    -webkit-transform: translateX(8px);
    -moz-transform: translateX(8px);
    -ms-transform: translateX(8px);
    -o-transform: translateX(8px);
    transform: translateX(8px);
}

/* Border-radius com prefixos para suporte antigo */
.footer-logo,
.footer-logo-fallback,
.contact-item,
.social-link,
.badge-item {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.trust-item i {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

/* Box-shadow com prefixos */
.footer-logo-fallback,
.contact-item,
.badge-item {
    -webkit-box-shadow: 0 4px 15px rgba(1, 175, 239, 0.3);
    -moz-box-shadow: 0 4px 15px rgba(1, 175, 239, 0.3);
    box-shadow: 0 4px 15px rgba(1, 175, 239, 0.3);
}

/* ===================================
   MELHORIAS DE PERFORMANCE
   =================================== */

/* Otimização de renderização */
.footer-professional,
.footer-main,
.footer-bottom,
.footer-trust {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

/* Will-change para elementos animados */
.contact-item,
.social-link,
.footer-links a,
.trust-item i,
.badge-item {
    will-change: transform;
}

/* ===================================
   MELHORIAS DE ACESSIBILIDADE WCAG 2.1
   =================================== */

/* Foco visível para navegação por teclado */
.social-link:focus,
.footer-links a:focus,
.policy-links a:focus,
.contact-item a:focus {
    outline: 2px solid var(--brand-primary-500);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Contraste melhorado */
.footer-professional {
    color: #f1f5f9;
}

/* Texto alternativo para ícones */
.contact-item i,
.social-link i,
.trust-item i {
    speak: none;
}

/* Skip links para leitores de tela */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===================================
   FORMULÁRIO PROGRESSIVO - DTF TÊXTIL
   =================================== */

/* Container do formulário progressivo */
.progressive-form-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 100;
}

.progressive-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary-500), var(--brand-primary-600), var(--brand-primary-400));
}

/* Indicadores de Progresso */
.progress-indicator {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 2rem;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    border: 3px solid var(--gray-200);
    margin-bottom: 0.5rem;
}

.step-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
    text-align: center;
    transition: color 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--brand-primary-500);
    color: white;
    border-color: var(--brand-primary-500);
    box-shadow: 0 0 0 4px rgba(1, 175, 239, 0.2);
}

.progress-step.active .step-label {
    color: var(--brand-primary-600);
    font-weight: 600;
}

.progress-step.completed .step-number {
    background: var(--brand-primary-600);
    color: white;
    border-color: var(--brand-primary-600);
}

.progress-step.completed .step-label {
    color: var(--brand-primary-600);
    font-weight: 600;
}

.progress-step.completed .step-number::before {
    content: '✓';
    font-size: 1rem;
    font-weight: bold;
}

.progress-line {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: var(--gray-200);
    z-index: 1;
}

.progress-step.completed ~ .progress-step .progress-line {
    background: var(--brand-primary-500);
}

/* Steps do formulário */
.form-step {
    display: none;
    opacity: 0;
}

.form-step.active {
    display: block;
    opacity: 1;
}

.step-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.step-header h3 {
    color: var(--brand-primary-600);
    margin-bottom: 0.5rem;
}

.step-header p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Campos do formulário melhorados */
.form-label {
    color: var(--gray-800);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.required-indicator {
    margin-left: 0.25rem;
}

.input-group {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    overflow: hidden;
}

.input-group:focus-within {
    box-shadow: 0 4px 15px rgba(1, 175, 239, 0.15);
}

.input-group-text {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-right: none;
    font-size: 1.1rem;
}

.form-control,
.form-select {
    border: 1px solid var(--gray-200);
    border-left: none;
    padding: 0.875rem 1rem;
    font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand-primary-500);
    box-shadow: none;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    background-image: none;
}

/* Feedback visual melhorado */
.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-control.is-invalid ~ .invalid-feedback,
.form-select.is-invalid ~ .invalid-feedback {
    display: block;
}

/* Radio buttons personalizados */
.business-type-options {
    margin-top: 1rem;
}

.form-check-custom {
    margin-bottom: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.25rem;
    cursor: pointer;
    background: white;
}

.form-check-custom:hover {
    border-color: var(--brand-primary-300);
    box-shadow: 0 4px 15px rgba(1, 175, 239, 0.1);
}

.form-check-custom.selected {
    border-color: var(--brand-primary-500);
    background: var(--brand-primary-50);
    box-shadow: 0 4px 15px rgba(1, 175, 239, 0.15);
}

.form-check-custom .form-check-input {
    display: none;
}

.option-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.option-content i {
    font-size: 1.5rem;
    color: var(--brand-primary-500);
    width: 24px;
    text-align: center;
}

.option-text {
    flex: 1;
}

.option-text strong {
    display: block;
    color: var(--gray-800);
    font-size: 1rem;
    line-height: 1.4;
}

.option-text small {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.3;
}

.form-check-custom.selected .option-text strong {
    color: var(--brand-primary-700);
}

/* Navegação do formulário */
.form-navigation {
    margin-top: 2rem;
}

.btn-next-step,
.btn-prev-step {
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 50px;
}

.btn-next-step {
    background: var(--brand-primary-500);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(1, 175, 239, 0.3);
    position: relative;
    z-index: 102;
}

.btn-next-step:hover {
    background: var(--brand-primary-600);
    box-shadow: 0 6px 20px rgba(1, 175, 239, 0.4);
}

.btn-prev-step {
    background: white;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
}

.btn-prev-step:hover {
    border-color: var(--brand-primary-500);
    color: var(--brand-primary-600);
    box-shadow: 0 4px 15px rgba(1, 175, 239, 0.1);
}

/* Correcao para mobile: evita selecao de texto nos filhos */
.btn-next-step *,
.btn-prev-step *,
.btn-submit * {
    user-select: none;
    -webkit-user-select: none;
}

/* Feedback visual instantaneo no mobile */
.btn-next-step:active,
.btn-prev-step:active {
    transform: scale(0.98);
    opacity: 0.9;
}

/* Remove tap highlight no mobile */
.btn-next-step,
.btn-prev-step {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

/* Indicadores LGPD */
.lgpd-indicators {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid var(--gray-200);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.security-badge i {
    color: #28a745;
    font-size: 1rem;
}

.lgpd-indicators p {
    color: var(--gray-600);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Alertas personalizados */
.form-alert {
    border-radius: 8px;
    border: none;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-alert .d-flex {
    align-items: center;
}

.form-alert i {
    font-size: 1.1rem;
}

/* Estados de loading */
.btn-submit.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Melhorias de acessibilidade */
.form-control:focus,
.form-select:focus,
.btn:focus {
    outline: 2px solid var(--brand-primary-500);
    outline-offset: 2px;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .progressive-form-card {
        margin: 0;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-top: 4px solid var(--brand-primary-500);
        max-width: 100%;
    }

    .progress-indicator {
        margin-bottom: 1.5rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .step-label {
        font-size: 0.8rem;
    }

    .progress-line {
        width: 80px;
        top: 17px;
    }

    .step-header {
        text-align: left;
    }

    .step-header h3 {
        font-size: 1.1rem;
    }

    .step-header p {
        font-size: 0.9rem;
    }

    .form-check-custom {
        padding: 1rem;
    }

    .option-content {
        gap: 0.75rem;
    }

    .option-content i {
        font-size: 1.25rem;
    }

    .option-text strong {
        font-size: 0.95rem;
    }

    .option-text small {
        font-size: 0.8rem;
    }

    .btn-next-step,
    .btn-prev-step {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .lgpd-indicators {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }

    .security-badge {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .lgpd-indicators .d-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Estados de hover melhorados */
.form-control:hover:not(:focus),
.form-select:hover:not(:focus) {
    border-color: var(--brand-primary-300);
}

.input-group:hover:not(:focus-within) {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

/* Progress bar customizada */
.progress {
    background-color: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, var(--brand-primary-500), var(--brand-primary-600));
}

/* Redução de movimento para acessibilidade */
@media (prefers-reduced-motion: reduce) {
    .form-step,
    .input-group,
    .form-check-custom,
    .btn-next-step,
    .btn-prev-step,
    .progress-bar {
        transition: none;
    }

    .form-step.active {
        animation: none;
    }

    .form-check-custom:hover,
    .btn-next-step:hover,
    .btn-prev-step:hover {
        transform: none;
    }
}

/* Alto contraste */
@media (prefers-contrast: high) {
    .form-check-custom {
        border-width: 3px;
    }

    .form-check-custom.selected {
        border-width: 3px;
        background: var(--brand-primary-100);
    }

    .step-number {
        border-width: 4px;
        font-weight: 700;
    }
}

/* ===================================
   TRUST SIGNALS - METODOLOGIA BEM
   =================================== */

/* Trust Bar - Barra de Indicadores de Confiança */
.trust-bar {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-primary-500), var(--brand-primary-600), var(--brand-primary-400));
}

.trust-bar__content {
    max-width: 100%;
}

/* Trust Indicator - Indicador Individual */
.trust-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.trust-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--trust-orange-500), #fbbf24);
    opacity: 0;
}

.trust-indicator:hover {
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.15);
    border-color: var(--trust-orange-300);
}

.trust-indicator:hover::before {
    opacity: 1;
}

.trust-indicator__icon {
    background: linear-gradient(135deg, var(--trust-orange-500), #fbbf24);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.trust-indicator__icon i {
    font-size: 1.75rem;
}

.trust-indicator:hover .trust-indicator__icon {
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.trust-indicator__content {
    flex: 1;
    text-align: left;
}

.trust-indicator__number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--trust-orange-600);
    line-height: 1;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, var(--trust-orange-600), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-indicator__text {
    font-size: 0.95rem;
    color: var(--gray-700);
    font-weight: 600;
    line-height: 1.3;
}

/* Mini Testimonials - Depoimentos Compactos */
.mini-testimonials {
    background: white;
    padding: 4rem 0;
    position: relative;
}

.mini-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--trust-orange-500), #fbbf24);
    border-radius: 2px;
}

.mini-testimonials__content {
    max-width: 100%;
}

.mini-testimonial {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mini-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--trust-orange-500), #fbbf24);
}

.mini-testimonial:hover {
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-orange-200);
}

.mini-testimonial__stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.mini-testimonial__stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.mini-testimonial__text {
    font-size: 1rem;
    color: var(--gray-800);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.mini-testimonial__text::before {
    content: '"';
    font-size: 3rem;
    color: var(--trust-orange-300);
    position: absolute;
    top: -1.0rem;
    left: -0.75rem;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.6;
}

.mini-testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mini-testimonial__avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--trust-orange-500), #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    flex-shrink: 0;
}

.mini-testimonial__details {
    flex: 1;
}

.mini-testimonial__name {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.mini-testimonial__company {
    font-size: 0.875rem;
    color: var(--trust-orange-600);
    font-weight: 500;
}

/* Trust Badges - Badges de Confiança Próximos ao Formulário */
.form-trust-badges {
    margin-bottom: 2rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.trust-badge:hover::before {
    left: 100%;
}

/* Badge de Resposta Rápida */
.trust-badge--response {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-color: #10b981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.trust-badge--response:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.trust-badge--response i {
    color: #d1fae5;
}

/* Badge de Atendimento Online */
.trust-badge--online {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.trust-badge--online:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.trust-badge__status-indicator {
    color: #22c55e;
}

/* Badge de Segurança */
.trust-badge--security {
    background: linear-gradient(135deg, var(--brand-primary-500), #fbbf24);
    color: white;
    border-color: var(--brand-primary-500);
    box-shadow: 0 4px 15px rgba(1, 175, 239, 0.3);
}

.trust-badge--security:hover {
    box-shadow: 0 6px 20px rgba(1, 175, 239, 0.4);
}

.trust-badge--security i {
    color: #fef3c7;
}

/* ===================================
   RESPONSIVIDADE PARA TRUST SIGNALS
   =================================== */

@media (max-width: 992px) {
    .trust-indicator {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .trust-indicator__icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .trust-indicator__content {
        text-align: center;
    }

    .mini-testimonial {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .trust-bar {
        padding: 2rem 0;
    }

    .trust-indicator {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }

    .trust-indicator__icon {
        width: 50px;
        height: 50px;
    }

    .trust-indicator__icon i {
        font-size: 1.5rem;
    }

    .trust-indicator__number {
        font-size: 1.875rem;
    }

    .trust-indicator__text {
        font-size: 0.875rem;
    }

    .mini-testimonials {
        padding: 3rem 0;
    }

    .mini-testimonial {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .mini-testimonial__text {
        font-size: 0.95rem;
    }

    .mini-testimonial__avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .form-trust-badges .row {
        justify-content: center;
        text-align: center;
    }

    .trust-badge {
        font-size: 0.8rem;
        padding: 0.625rem 1rem;
        margin: 0.25rem;
        flex: 1;
        justify-content: center;
        min-width: 140px;
    }
}

@media (max-width: 576px) {
    /* Prevenir overflow em dispositivos muito pequenos */
    * {
        max-width: 100vw;
    }

    .row {
        margin-left: -15px;
        margin-right: -15px;
    }

    .col, [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }

    .trust-indicator {
        padding: 1.25rem 0.75rem;
        width: 100%;
    }

    .trust-indicator__number {
        font-size: 1.5rem;
    }

    .mini-testimonial__text::before {
        font-size: 2rem;
        top: -0.25rem;
        left: -0.5rem;
    }

    .form-trust-badges .col-auto {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .trust-badge {
        width: 100%;
        justify-content: center;
    }
}

/* Redução de movimento para acessibilidade */
@media (prefers-reduced-motion: reduce) {
    .trust-indicator,
    .mini-testimonial,
    .trust-badge,
    .trust-indicator__icon,
    .trust-badge__status-indicator {
        transition: none;
        animation: none;
    }

    .trust-indicator:hover,
    .mini-testimonial:hover,
    .trust-badge:hover {
        transform: none;
    }
}

/* Alto contraste */
@media (prefers-contrast: high) {
    .trust-indicator {
        border-width: 2px;
        border-color: var(--brand-primary-600);
    }

    .mini-testimonial {
        border-width: 2px;
        border-color: var(--gray-400);
    }

    .trust-badge {
        border-width: 3px;
        font-weight: 700;
    }
}

/* ===================================
   MEDIA QUERIES ESPECÍFICAS
   =================================== */

/* Tablets em modo paisagem */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .footer-main {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .trust-icons {
        gap: 1.75rem;
    }

    /* Ajustar mini-testimonials para tablets */
    .mini-testimonial {
        padding: 1.75rem;
    }

    .mini-testimonial__text {
        font-size: 0.95rem;
    }
}

/* Dispositivos de alta densidade (Retina) */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
       only screen and (min-resolution: 192dpi),
       only screen and (min-resolution: 2dppx) {
    .footer-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Modo escuro do sistema */
@media (prefers-color-scheme: dark) {
    .footer-professional {
        background: linear-gradient(135deg, #000000 0%, #0f172a 50%, #1e293b 100%);
    }
}

/* Redução de movimento para acessibilidade */
@media (prefers-reduced-motion: reduce) {
    .contact-item,
    .social-link,
    .footer-links a,
    .trust-item i,
    .badge-item {
        transition: none;
    }

    .contact-item:hover,
    .social-link:hover,
    .trust-item:hover i,
    .badge-item:hover {
        transform: none;
    }
}

/* Print styles */
@media print {
    .footer-professional {
        background: white !important;
        color: black !important;
    }

    .footer-title {
        color: black !important;
    }

    .contact-item a {
        color: black !important;
        text-decoration: underline !important;
    }

    .social-link,
    .trust-item i {
        display: none;
    }
}


