/* core/static/css/sec1_style.css */

.home_section1_card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
  }
  
  .home_section1_card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 250px;
    padding: 0;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center; /* centraliza tudo no eixo horizontal */
    overflow: hidden;
  }
  
  .home_section1_profile {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
  }
  
  .home_section1_content {
    padding: 1rem;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* centraliza botão */
  }

  /* ========================================= */

  .home_section1_card:hover {
    transform: scale(1.05);
  }
  
 
  .home_section1_title {
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .home_section1_subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
  }
  
  .home_section1_message-btn {
    background-color: #46b687;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
  }
  