/* ===================================================================== */
/*                      📄 PÁGINAS LEGAIS - CSS ESPECÍFICO                */
/* ===================================================================== */

/* ===================================
   VARIÁVEIS DE COR - PÁGINAS LEGAIS
   ================================== */
:root {
    --legal-primary: #667eea;        /* Azul principal */
    --legal-secondary: #764ba2;      /* Roxo secundário */
    --legal-accent: #f093fb;         /* Rosa suave */
    --legal-light: #f8f9ff;          /* Fundo azul claro */
    --legal-text: #2c3e50;           /* Texto principal */
    --legal-text-light: #5a6c7d;     /* Texto secundário */
    --legal-gradient: linear-gradient(135deg, #667eea, #764ba2);
}

/* ===================================
   CONTAINER PRINCIPAL
   ================================== */
.pagina-legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    line-height: 1.7;
}

/* ===================================
   HEADER DA PÁGINA LEGAL
   ================================== */
.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--legal-primary);
}

.legal-header h1 {
    font-size: 3rem;
    color: var(--legal-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.legal-subtitle {
    font-size: 1.3rem;
    color: var(--legal-text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.legal-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--legal-secondary);
    font-weight: 500;
}

/* ===================================
   SEÇÕES DE CONTEÚDO
   ================================== */
.legal-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.legal-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.legal-section h2 {
    color: var(--legal-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--legal-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-section h3 {
    color: var(--legal-secondary);
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.legal-section h4 {
    color: var(--legal-text);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
    font-weight: 600;
}

.legal-section p {
    color: var(--legal-text);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* ===================================
   CLASSES SEGURAS (NÃO DETECTADAS PELO ADS-CORE)
   ================================== */

/* Substitui .explanation - CLASSE SEGURA */
.legal-text-block {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    line-height: 1.7;
}

/* Substitui .legal-explanation - CLASSE SEGURA */
.legal-highlight-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid var(--legal-primary);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.legal-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--legal-gradient);
}

.legal-highlight-box h4 {
    color: var(--legal-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Avisos importantes - CLASSE SEGURA */
.legal-warning-box {
    background: rgba(255, 243, 205, 0.8);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 5px solid #ff9800;
}

.legal-warning-box h4 {
    color: #e65100;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.legal-warning-box p {
    color: #bf360c;
    margin-bottom: 0.8rem;
}

.legal-warning-box ul {
    color: #bf360c;
    margin-left: 1.5rem;
}

/* Fundação legal block */
.legal-foundation-block {
    background: rgba(248, 249, 255, 0.9);
    border: 2px solid var(--legal-light);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

/* ===================================
   LISTAS ESTRUTURADAS
   ================================== */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.legal-list li {
    background: var(--legal-light);
    padding: 1rem;
    margin-bottom: 0.8rem;
    border-radius: 8px;
    border-left: 4px solid var(--legal-primary);
    position: relative;
    transition: all 0.3s ease;
}

.legal-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.1);
}

.legal-list li strong {
    color: var(--legal-primary);
    font-weight: 600;
}

/* ===================================
   GRIDS ESPECIAIS
   ================================== */
.servico-grid,
.proibido-grid,
.nao-substitui-grid,
.modificacoes-grid,
.interrupcoes-grid,
.responsabilidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.servico-item,
.proibido-item,
.nao-substitui-item,
.modificacao-item,
.interrupcao-item,
.responsabilidade-item {
    background: linear-gradient(135deg, #ffffff 0%, var(--legal-light) 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.servico-item:hover,
.proibido-item:hover,
.nao-substitui-item:hover,
.modificacao-item:hover,
.interrupcao-item:hover,
.responsabilidade-item:hover {
    border-color: var(--legal-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.servico-item h4,
.proibido-item h4,
.nao-substitui-item h4,
.modificacao-item h4,
.interrupcao-item h4,
.responsabilidade-item h4 {
    color: var(--legal-primary);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.servico-item p,
.proibido-item p,
.nao-substitui-item p,
.modificacao-item p,
.interrupcao-item p,
.responsabilidade-item p {
    color: var(--legal-text-light);
    margin: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===================================
   SEÇÃO DIFERENCIAL
   ================================== */
.diferencial-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid var(--legal-primary);
}

.diferencial-section h2 {
    color: var(--legal-secondary);
    border-bottom-color: var(--legal-primary);
}

/* ===================================
   CALCULADORAS RELACIONADAS
   ================================== */
.calculadoras-relacionadas {
    background: linear-gradient(135deg, #ffffff 0%, var(--legal-light) 100%);
}

.calc-relacionadas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.calc-relacionada-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    text-decoration: none;
    color: var(--legal-text);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-height: 80px;
    justify-content: center;
}

.calc-relacionada-card:hover {
    border-color: var(--legal-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.calc-relacionada-card.destaque {
    background: var(--legal-gradient);
    color: white;
    border-color: var(--legal-secondary);
    font-weight: 600;
}

.calc-relacionada-card.destaque:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.3);
}

.calc-emoji {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.calc-relacionada-card span:last-child {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===================================
   INFORMAÇÕES DE CONTATO
   ================================== */
.contato-info {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.contato-info p {
    margin: 0.8rem 0;
    font-size: 1rem;
}

.contato-info strong {
    color: var(--legal-secondary);
}

.contato-compromisso {
    font-style: italic;
    color: var(--legal-secondary);
    font-weight: 500;
    margin-top: 1rem;
}

/* ===================================
   LEIS APLICÁVEIS
   ================================== */
.leis-aplicaveis ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.leis-aplicaveis ul li {
    background: rgba(255, 255, 255, 0.6);
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    border-left: 3px solid var(--legal-primary);
}

/* ===================================
   LINKS E NAVEGAÇÃO
   ================================== */
.legal-section a {
    color: var(--legal-primary);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--legal-secondary);
    text-decoration: none;
}

.legal-section a[target="_blank"]::after {
    content: ' 🔗';
    font-size: 0.8rem;
    opacity: 0.7;
}

/* ===================================
   RESPONSIVIDADE
   ================================== */

/* Tablet */
@media (max-width: 1024px) {
    .pagina-legal-container {
        padding: 1.5rem;
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
    
    .legal-text-block,
    .legal-highlight-box,
    .legal-warning-box {
        padding: 1.2rem;
        margin: 1.2rem 0;
    }
    
    .servico-grid,
    .proibido-grid,
    .nao-substitui-grid,
    .modificacoes-grid,
    .interrupcoes-grid,
    .responsabilidades-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .pagina-legal-container {
        padding: 1rem;
        margin: 1rem;
    }
    
    .legal-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .legal-header h1 {
        font-size: 2.2rem;
    }
    
    .legal-subtitle {
        font-size: 1.1rem;
    }
    
    .legal-meta {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .legal-section {
        margin-bottom: 2rem;
        padding: 1.2rem;
    }
    
    .legal-section h2 {
        font-size: 1.6rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-text-block,
    .legal-highlight-box,
    .legal-warning-box {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .servico-grid,
    .proibido-grid,
    .nao-substitui-grid,
    .modificacoes-grid,
    .interrupcoes-grid,
    .responsabilidades-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .calc-relacionadas-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    
    .calc-relacionada-card {
        padding: 0.8rem;
        min-height: 70px;
    }
    
    .calc-emoji {
        font-size: 1.2rem;
    }
    
    .calc-relacionada-card span:last-child {
        font-size: 0.8rem;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .pagina-legal-container {
        margin: 0.5rem;
        padding: 0.8rem;
    }
    
    .legal-header h1 {
        font-size: 1.8rem;
    }
    
    .legal-section {
        padding: 1rem;
    }
    
    .legal-text-block,
    .legal-highlight-box,
    .legal-warning-box {
        padding: 0.8rem;
    }
    
    .calc-relacionadas-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   ANIMAÇÕES
   ================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.legal-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Delays progressivos */
.legal-section:nth-child(1) { animation-delay: 0.1s; }
.legal-section:nth-child(2) { animation-delay: 0.2s; }
.legal-section:nth-child(3) { animation-delay: 0.3s; }
.legal-section:nth-child(4) { animation-delay: 0.4s; }
.legal-section:nth-child(5) { animation-delay: 0.5s; }
.legal-section:nth-child(6) { animation-delay: 0.6s; }

/* ===================================
   TIPOGRAFIA MELHORADA
   ================================== */
.legal-text-block p,
.legal-highlight-box p,
.legal-warning-box p {
    text-align: justify;
    hyphens: auto;
}

.legal-text-block strong,
.legal-highlight-box strong,
.legal-warning-box strong {
    color: var(--legal-primary);
    font-weight: 600;
}

.legal-text-block ul li strong,
.legal-highlight-box ul li strong,
.legal-warning-box ul li strong {
    color: var(--legal-secondary);
}

/* ===================================
   OTIMIZAÇÕES PARA LEITURA
   ================================== */

/* Melhor espaçamento para texto longo */
.legal-text-block p + p,
.legal-highlight-box p + p,
.legal-warning-box p + p {
    margin-top: 1.5rem;
}

.legal-text-block p + ul,
.legal-text-block p + .grid,
.legal-highlight-box p + ul,
.legal-highlight-box p + .grid {
    margin-top: 1.8rem;
}

/* ===================================
   ELEMENTOS ESPECIAIS
   ================================== */

/* Separadores visuais */
.legal-section + .legal-section::before {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--legal-gradient);
    margin: 0 auto 2rem auto;
    border-radius: 2px;
}

/* Scroll suave para navegação interna */
html {
    scroll-behavior: smooth;
}

/* Focus melhorado para acessibilidade */
.calc-relacionada-card:focus,
.legal-section a:focus {
    outline: 2px solid var(--legal-primary);
    outline-offset: 2px;
}

/* ===================================
   PERFORMANCE E OTIMIZAÇÃO
   ================================== */
.legal-section,
.legal-text-block,
.legal-highlight-box,
.legal-warning-box {
    will-change: transform;
}

.calc-relacionada-card {
    will-change: transform;
}

/* Reduzir animações em dispositivos lentos */
@media (prefers-reduced-motion: reduce) {
    .legal-section {
        animation: none;
    }
    
    .legal-section:hover,
    .calc-relacionada-card:hover {
        transform: none;
    }
}


/* ===================================================================== */
/*                    SOBRE.CSS - PÁGINA QUEM SOMOS                      */
/* ===================================================================== */

/* ===== CONTAINER PRINCIPAL ===== */
.sobre-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* ===== HERO HEADER ===== */
.sobre-hero {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  color: white;
  margin-bottom: 3rem;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
}

.sobre-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-stat:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #667eea;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 500;
}

/* ===== CONTENT BLOCKS GENÉRICOS ===== */
.content-block {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.content-block h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #667eea;
  display: inline-block;
}

.content-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.content-block p strong {
  color: #667eea;
  font-weight: 600;
}

/* ===== VALORES GRID ===== */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.valor-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
  border: 2px solid #e6e9ff;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.valor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.valor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.valor-card:hover::before {
  opacity: 1;
}

.valor-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.valor-card h3 {
  font-size: 1.4rem;
  color: #667eea;
  margin-bottom: 1rem;
  font-weight: 700;
}

.valor-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

/* ===== DIFERENCIAIS LIST ===== */
.diferenciais-list {
  margin-top: 2rem;
}

.diferencial-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: #f8f9ff;
  border-radius: 12px;
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
}

.diferencial-item:hover {
  background: #f0f2ff;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
  transform: translateX(5px);
}

.diferencial-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.diferencial-content h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.diferencial-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

/* ===== PÚBLICO GRID ===== */
.publico-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.publico-card {
  background: white;
  border: 2px solid #e6e9ff;
  border-radius: 12px;
  padding: 1.8rem;
  text-align: center;
  transition: all 0.3s ease;
}

.publico-card:hover {
  border-color: #667eea;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.12);
  transform: translateY(-5px);
}

.publico-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.publico-card h3 {
  font-size: 1.2rem;
  color: #667eea;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.publico-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}

/* ===== EQUIPE GRID ===== */
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.equipe-item {
  background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
  border: 2px solid #e6e9ff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.equipe-item:hover {
  border-color: #667eea;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.12);
  transform: scale(1.03);
}

.equipe-icon {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
  display: block;
}

.equipe-item h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 700;
}

.equipe-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

/* ===== PROCESSO TIMELINE ===== */
.processo-timeline {
  margin-top: 2rem;
  position: relative;
  padding-left: 3rem;
}

.processo-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 30px;
  bottom: 30px;
  width: 3px;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  border: 4px solid white;
  position: relative;
  z-index: 2;
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 1.8rem;
  border-radius: 12px;
  border: 2px solid #e6e9ff;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  border-color: #667eea;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
  transform: translateX(10px);
}

.timeline-content h3 {
  font-size: 1.3rem;
  color: #667eea;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.timeline-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

/* ===== TRANSPARÊNCIA GRID ===== */
.transparencia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.transparencia-item {
  background: white;
  border: 2px solid #e6e9ff;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.transparencia-item:hover {
  border-color: #667eea;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.12);
  transform: translateY(-5px);
}

.transparencia-item h3 {
  font-size: 1.3rem;
  color: #667eea;
  margin-bottom: 1rem;
  font-weight: 700;
}

.transparencia-item p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

/* ===== IMPACTO STATS ===== */
.impacto-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding: 2rem 0;
}

.impacto-stat {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
  border-radius: 12px;
  border: 2px solid #e6e9ff;
  transition: all 0.3s ease;
}

.impacto-stat:hover {
  border-color: #667eea;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.12);
  transform: scale(1.05);
}

.impacto-number {
  font-size: 3rem;
  font-weight: 800;
  color: #667eea;
  display: block;
  margin-bottom: 0.5rem;
}

.impacto-label {
  font-size: 1.2rem;
  color: #2c3e50;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.impacto-desc {
  font-size: 0.95rem;
  color: #718096;
  line-height: 1.5;
}

/* ===== FUTURO LIST ===== */
.futuro-list {
  margin-top: 2rem;
}

.futuro-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  background: #f8f9ff;
  border-radius: 12px;
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
}

.futuro-item:hover {
  background: #f0f2ff;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
  transform: translateX(5px);
}

.futuro-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.futuro-content h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.futuro-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

/* ===== CTA BLOCK ===== */
.cta-block {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  margin-top: 3rem;
}

.cta-block h2 {
  color: white;
  border-bottom: 3px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-button {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-primary {
  background: white;
  color: #667eea;
}

.cta-primary:hover {
  background: #f8f9ff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ===== RESPONSIVIDADE MOBILE ===== */
@media (max-width: 768px) {
  .sobre-section {
    padding: 1rem 0.5rem;
  }

  .sobre-hero {
    padding: 2rem 1.5rem;
  }

  .sobre-hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .content-block {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .content-block h2 {
    font-size: 1.6rem;
  }

  .content-block p {
    font-size: 1rem;
  }

  .valores-grid,
  .publico-grid,
  .equipe-grid,
  .transparencia-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .diferencial-item,
  .futuro-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .diferencial-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .processo-timeline {
    padding-left: 2rem;
  }

  .processo-timeline::before {
    left: 25px;
  }

  .timeline-item {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .timeline-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .impacto-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .impacto-number {
    font-size: 2rem;
  }

  .impacto-label {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .sobre-hero h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .impacto-stats {
    grid-template-columns: 1fr;
  }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-block {
  animation: fadeInUp 0.6s ease-out;
}

.valor-card,
.publico-card,
.equipe-item,
.transparencia-item,
.impacto-stat {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.valor-card:nth-child(1) { animation-delay: 0.1s; }
.valor-card:nth-child(2) { animation-delay: 0.2s; }
.valor-card:nth-child(3) { animation-delay: 0.3s; }
.valor-card:nth-child(4) { animation-delay: 0.4s; }
.valor-card:nth-child(5) { animation-delay: 0.5s; }
.valor-card:nth-child(6) { animation-delay: 0.6s; }



/* ===== METODOLOGIA.CSS ===== */
/* Estilos específicos para página de metodologia */

/* ===== HERO SECTION ===== */
.metodologia-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.metodologia-hero h1 {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

/* ===== CONTENT BLOCKS ===== */
.metodologia-section {
    max-width: 1200px;
    margin: 0 auto;
}

.content-block {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.content-block h2 {
    color: #2c3e50;
    font-size: 2.2em;
    margin-bottom: 20px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
}

.content-block p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
    font-size: 1.05em;
}

/* ===== INTRO BLOCK ===== */
.intro-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.intro-list li {
    padding: 12px 0;
    font-size: 1.1em;
    border-bottom: 1px solid #eee;
}

.destaque-box {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-left: 5px solid #667eea;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.destaque-box p {
    margin: 0;
    font-size: 1.1em;
}

/* ===== TIMELINE DE PROCESSO ===== */
.processo-timeline {
    position: relative;
    padding: 20px 0;
    margin-top: 30px;
}

.timeline-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 50px;
    width: 2px;
    height: calc(100% + 40px);
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-number {
    min-width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.timeline-content h3 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.timeline-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.exemplo-mini {
    background: white;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    border-left: 3px solid #ffc107;
    font-size: 0.95em;
}

.exemplo-mini strong {
    color: #ff9800;
}

/* ===== ACCORDION ===== */
.fundamentacao-accordion {
    margin-top: 30px;
}

.accordion-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    cursor: pointer;
    background: #f8f9fa;
    transition: background 0.3s ease;
    user-select: none;
}

.accordion-header:hover {
    background: #e8f4fd;
}

.accordion-icon {
    font-size: 2em;
    flex-shrink: 0;
}

.accordion-header h3 {
    flex: 1;
    margin: 0;
    color: #2c3e50;
    font-size: 1.3em;
}

.accordion-toggle {
    font-size: 2em;
    color: #667eea;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 3000px;
    padding: 25px;
    border-top: 1px solid #e0e0e0;
}

.fonte-detalhada h4 {
    color: #667eea;
    font-size: 1.2em;
    margin: 25px 0 15px 0;
}

.fonte-detalhada ul {
    margin: 15px 0 15px 25px;
}

.fonte-detalhada li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.exemplos-artigos {
    margin: 20px 0;
}

.artigo-exemplo {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 10px;
    border-left: 3px solid #2196F3;
}

.artigo-exemplo strong {
    color: #2196F3;
    display: block;
    margin-bottom: 5px;
}

.fonte-detalhada a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.fonte-detalhada a:hover {
    text-decoration: underline;
}

/* ===== EXEMPLO PRÁTICO ===== */
.exemplo-pratico-steps {
    margin-top: 30px;
}

.pratico-step {
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.step-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    min-width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    font-weight: 700;
}

.step-header h3 {
    margin: 0;
    font-size: 1.4em;
}

.step-content {
    padding: 25px;
}

.step-content ul,
.step-content ol {
    margin: 15px 0 15px 25px;
}

.step-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.formula-destaque {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
    border: 2px solid #667eea;
}

.formula-line {
    padding: 12px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 1.05em;
}

.formula-line:last-child {
    margin-bottom: 0;
}

.formula-line strong {
    color: #667eea;
}

.code-example {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    font-family: 'Courier New', Consolas, monospace;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 20px 0;
}

.teste-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.teste-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.teste-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.teste-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.teste-table tbody tr:hover {
    background: #f8f9fa;
}

.teste-nota {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #4caf50;
    margin-top: 15px;
    color: #2e7d32;
    font-weight: 600;
}

/* ===== ATUALIZAÇÃO GRID ===== */
.atualizacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.atualizacao-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.atualizacao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.atualizacao-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.atualizacao-card h3 {
    color: #2c3e50;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.atualizacao-card ul,
.atualizacao-card ol {
    margin: 15px 0 15px 20px;
}

.atualizacao-card li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.destaque-tempo {
    background: white;
    padding: 12px;
    border-radius: 6px;
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
    color: #667eea;
    border: 2px solid #667eea;
}

.link-destaque {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
}

.link-destaque:hover {
    text-decoration: underline;
}

/* ===== LIMITAÇÕES GRID ===== */
.limitacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.limitacao-item {
    background: #fff3cd;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ff9800;
}

.limitacao-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.limitacao-item h3 {
    color: #2c3e50;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.disclaimer-destaque {
    background: linear-gradient(135deg, #ff980015 0%, #f4433615 100%);
    border: 2px solid #ff9800;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.disclaimer-destaque h3 {
    color: #f44336;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.disclaimer-destaque p {
    font-size: 1.05em;
    line-height: 1.8;
    color: #d84315;
    margin: 0;
}


/* ===== CTA METODOLOGIA ===== */
.cta-metodologia {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    text-align: center;
    padding: 50px 40px;
}

.cta-metodologia h2 {
    border: none;
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.cta-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cta-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.cta-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .metodologia-hero {
        padding: 40px 15px;
    }

    .metodologia-hero h1 {
        font-size: 2em;
    }

    .hero-subtitle {
        font-size: 1em;
    }

    .content-block {
        padding: 25px 20px;
    }

    .content-block h2 {
        font-size: 1.8em;
    }

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .timeline-item::before {
        left: 22px;
        top: 60px;
    }

    .atualizacao-grid,
    .limitacoes-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .teste-table {
        font-size: 0.9em;
    }

    .teste-table th,
    .teste-table td {
        padding: 10px 8px;
    }

    .code-example {
        font-size: 0.85em;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .metodologia-hero h1 {
        font-size: 1.6em;
    }

    .content-block h2 {
        font-size: 1.5em;
    }

    .step-header h3 {
        font-size: 1.1em;
    }

    .formula-destaque {
        padding: 15px;
    }

    .formula-line {
        font-size: 0.9em;
    }
}

/* ===== VERIFICAÇÃO STEPS (VERSÃO MELHORADA) ===== */
.verificacao-block {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #4caf50;
}

.verificacao-steps {
    margin-top: 30px;
}

.verif-step {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #4caf50;
    transition: all 0.3s ease;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.verif-step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.25);
    border-left-width: 8px;
}

.verif-number {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
    position: relative;
}

.verif-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.2);
    animation: pulse-verificacao 2s infinite;
}

@keyframes pulse-verificacao {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.verif-content {
    flex: 1;
}

.verif-content h3 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.verif-content h3::before {
    content: '✓';
    display: inline-block;
    width: 28px;
    height: 28px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    font-size: 0.8em;
    text-align: center;
    line-height: 28px;
    font-weight: 700;
}

.verif-content p {
    font-size: 1.05em;
    margin-bottom: 15px;
    color: #555;
}

.verif-content ul {
    margin: 15px 0 0 25px;
    list-style: none;
}

.verif-content li {
    margin-bottom: 12px;
    line-height: 1.8;
    padding-left: 30px;
    position: relative;
    color: #444;
    font-size: 1.02em;
}

.verif-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
    font-size: 1.3em;
}

.verif-content a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.verif-content a:hover {
    border-bottom-color: #4caf50;
}

/* Badge especial para links de verificação */
.verif-content li strong {
    background: linear-gradient(135deg, #4caf5020 0%, #45a04920 100%);
    padding: 2px 8px;
    border-radius: 4px;
    color: #2e7d32;
    font-weight: 600;
}

/* Destaque para último step (Reporte) */
.verif-step:last-child {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe8a1 100%);
    border-left-color: #ff9800;
}

.verif-step:last-child .verif-number {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.4);
}

.verif-step:last-child .verif-content h3::before {
    content: '!';
    background: #ff9800;
}

/* Responsivo */
@media (max-width: 768px) {
    .verif-step {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .verif-number {
        min-width: 50px;
        height: 50px;
        font-size: 1.5em;
    }

    .verif-content h3 {
        font-size: 1.3em;
    }

    .verif-step:hover {
        transform: translateX(0);
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .verif-content h3 {
        font-size: 1.1em;
    }

    .verif-content li {
        font-size: 0.95em;
        padding-left: 25px;
    }
}