 @font-face {
      font-family: 'albert';
      src: url(../font/Albert_Sans/AlbertSans-VariableFont_wght.ttf);
    }
    * {
      box-sizing: border-box;
    }
    body {
      font-family: 'albert', 'Open Sans', sans-serif;
      margin: 0;
      padding: 0;
      background: #fff;
      color: #392617;
      line-height: 1.6;
    }
    textarea:focus,
    input:focus {
      box-shadow: none;
      outline: none;
    }


.impacto-social {
      background-color: #7e0000;
      background-size: cover;
      background-position: center;
      padding: 5% 0;
      text-align: center;
      margin-top: 4px;
    }


      @media (max-width: 600px) {
      .impacto-social{
        margin-top: -5%;
      }

    }

   .impacto-social h2 {
      color: #ddc7a4;
      font-size: 3.5rem;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .impacto-social .divisoria {
      max-width: 250px;
      margin: 0 auto;
    }
    .impacto-social p {
      font-size: 1.3rem;
      max-width: 900px;
      color: #fff;
      text-shadow: 0 0 6px rgba(252, 252, 252, 0.7);
      margin: 0 auto;
      padding: 0 10px;
    }

    /* Container dos cards em coluna única */
    .cards-container {
      background-color: #fff;
      max-width: 900px;
      margin: 5% auto 60px;
      padding: 0 15px;
      display: flex;
      flex-direction: column;
      gap: 30px;
      justify-content: center;
      align-items: stretch;
    }

    /* Cada card ocupa 100% da largura do container */
    .card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      width: 100%;
      display: flex;
      align-items: center;
      padding: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      gap: 20px;
    }
    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    /* Imagem ocupa 80% do card e ganha zoom ao passar o mouse */
    .card img {
      width: 80%;
      height: auto;
      border-radius: 10px;
      object-fit: contain;
      background-color: #fefefe;
      padding: 10px;
      flex-shrink: 0;
      transition: transform 0.4s ease;
    }

    .card:hover img {
      transform: scale(1.4);
    }

    /* Texto ocupa 20% do card */
    .card-content {
      width: 20%;
    }
    .card-content h3 {
      margin: 0 0 10px;
      font-size: 1.4rem;
      color: #392617;
      font-weight: 700;
    }
    .card-content p {
      margin: 0;
      font-size: 1rem;
      color: #555;
      line-height: 1.4;
    }

    /* Responsividade */
    @media (max-width: 600px) {
      .cards-container {
        max-width: 100%;
        padding: 0 10px;
      }

        .impacto-social h2 {
      color: #ddc7a4;
      font-size: 2.5rem;
      margin-bottom: 10px;
      font-weight: 600;
    }


      .card {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .card img {
        width: 100%;
        max-width: 300px;
        margin-bottom: 15px;
        transition: transform 0.4s ease;
      }
      .card:hover img {
        transform: scale(1.2);
      }
      .card-content {
        width: 100%;
      }
      .card-content h3 {
        font-size: 1.2rem;
      }
      .card-content p {
        font-size: 0.95rem;
      }
    }