/* Fundo Claro */
body {
    background-color: #f8f9fa;
    color: #343a40;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
  }
  
  /* Avatar da Logo */
  .logo-container {
    width: 150px;
    height: 150px;
    background-color: #ffffff;
    border: 5px solid #1a54e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .logo-avatar {
    width: 150px;
    height: 150px;
    background-color: #ffffff;
    border: 5px solid #1a54e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
  }

  .logo-avatar:hover {
    box-shadow: 0 0 20px #1a54e5;
  }
  

 /* Estilo para a seção de informações */
.info-section {
    padding: 20px; /* Reduzido para ocupar menos espaço */
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 1px solid #e5e5e5;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .info-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Título */
  .info-section h1 {
    font-size: 1.25rem; /* Reduzido para ocupar menos espaço */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a54e5;
    margin-bottom: 15px; /* Espaçamento menor */
    animation: slideInFromLeft 0.8s ease-in-out;
  }
  
  /* Detalhes */
  .info-details p {
    font-size: 0.9rem; /* Reduzido para ser mais compacto */
    line-height: 1.5; /* Espaçamento ajustado */
    color: #6c757d;
    animation: fadeIn 1s ease-in-out;
  }
  
  .info-details i {
    font-size: 1.2rem; /* Ícone menor */
    vertical-align: middle;
    margin-right: 8px; /* Espaço ajustado */
    color: #1a54e5;
    animation: bounce 1.5s infinite ease-in-out;
  }
  
  .info-details strong {
    color: #1a54e5; /* Destaque para texto importante */
    font-weight: bold;
    animation: fadeIn 1.1s ease-in-out;
  }
  
  
  /* Animações */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideInFromLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-5px);
    }
    60% {
      transform: translateY(-2px);
    }
  }
  
  
  /* Cartão Principal */
  .card-container {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Botões */
  /* Botões */
  .list-group-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #1a54e5, #0ba8ff);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    padding: 15px 20px;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .list-group-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
  }

  .list-group-item i {
    font-size: 20px;
    margin-right: 10px;
  }
  
  
  /* Avatares */
  .avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ffffff;
  }
  

  /* Footer */
  footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e5e5e5;
    font-size: 14px;
    color: #6c757d;
  }
  
  footer p {
    margin: 0;
  }

  .social-icons a {
    color: #6c757d;
    margin: 0 10px;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #1a54e5;
  }
  
  footer {
    border-top: 1px solid #e5e5e5;
  }
  
  
  /* Responsividade */
  @media (max-width: 576px) {
    .list-group-item {
      padding: 10px 15px;
    }
  
    .avatar {
      width: 50px;
      height: 50px;
    }
  
    h1 {
      font-size: 24px;
    }
  
    p {
      font-size: 14px;
    }
  
    .logo-container {
      width: 120px;
      height: 120px;
    }
  }
  
  