/* =========================
   Arquivo: inicio-info.css
   Diretório: ativerma\inicio\css\inicio-info.css
   PÁGINA INFORMATIVA - ESTILOS
========================= */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 700px;
    animation: fadeInUp 0.6s ease-out;
}

/* Card Principal */
.info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Ícone */
.icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #1672d8, #57aff9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(22, 114, 216, 0.3);
}

.icon-wrapper i {
    font-size: 3rem;
    color: #ffffff;
}

/* Título */
h1 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Mensagem Principal */
.message-box {
    background: linear-gradient(145deg, #f0f9ff, #e0f2fe);
    border-left: 4px solid #1672d8;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 35px;
}

.main-message {
    font-size: 1.1rem;
    color: #1f2937;
    line-height: 1.8;
}

.main-message strong {
    color: #1672d8;
    font-weight: 600;
}

/* Seção de Informações */
.info-section {
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    text-align: left;
}

.info-item:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}

.info-item i {
    font-size: 1.3rem;
    color: #1672d8;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-item p {
    font-size: 0.95rem;
    color: #4b5563;
    margin: 0;
}

/* Nota de Rodapé */
.footer-note {
    background: #f9fafb;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e5e7eb;
}

.footer-note p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* Rodapé Simples */
.simple-footer {
    text-align: center;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Animação */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .info-card {
        padding: 40px 25px;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    .icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .icon-wrapper i {
        font-size: 2.5rem;
    }
    
    .main-message {
        font-size: 1rem;
    }
    
    .info-item {
        gap: 12px;
    }
    
    .info-item i {
        font-size: 1.1rem;
    }
    
    .info-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }
    
    .info-card {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 1.4rem;
    }
    
    .message-box {
        padding: 20px;
    }
}

@media (max-width: 768px) {
  .info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .info-item i {
    margin-top: 0;
    font-size: 1.6rem;
  }

  .info-item p {
    font-size: 0.95rem;
  }
}
