@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;900&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color:#092056;
}
.video-section {
      padding: 60px;
      background-color: #092056;
      font-family: 'Poppins', sans-serif;
      margin-top: -40px;
    }

    .video-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
    }

    .video-box {
      flex: 1;
      max-width: 700px;
      margin-bottom: -35px;
    }

 .video-box video {
    width: 100%;
    height: 350px; 
    object-fit: cover; 
    border-radius: 2px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    margin-left: -35px;
}

    .texto-box {
      flex: 1;
      max-width: 500px;
      color: #ffffff;
    }

    .texto-box h2 {
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 15px;
      line-height: 1.2em;
    }

    .texto-box p {
      font-size: 13px;
      font-weight: 300;
      line-height: 1.6em;
      margin: -10px;
      margin-bottom: -10px;
    }
  .texto p{ 
      font-size: 13px;
      color:#ffffff;
      font-weight: 300;
      line-height: 1.6em;
      margin-bottom: 50px;
}

@media (max-width: 768px) {
  .video-content {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
  }

  .video-content video {
    width: 100%;     
    max-width: 640px;
    height: auto;
    margin: 20px 0;   
    display: block;
  }

  .video-text h2 {
    font-size: 1.6rem;
    text-align: center; 
  }

  .texto p,
  .texto-box p {
    font-size: 16px;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.7em;
    margin-bottom: 49px;
    text-align: left;
  }
}

.secao-principal {
  background-color: #092056;
    padding: 60px;
  text-align: center;
}

.mercadorias {
  padding: 40px;
  text-align: center;
}

.mercadorias h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #092056;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background-color: #ffffff;
  color: #092056;
  width: 230px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  text-decoration: none;
  font-size: 19px;
  font-weight: 500;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.141);
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  margin: 40px 15px;
}

.card:hover {
  background-color: #092056;
  color: #ffffff;
  box-shadow: 0 12px 40px rgba(9, 32, 86, 0.2);
}

/* Animações */
.aparecer-esquerda {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s ease-out;
}

.aparecer-esquerda.visivel {
  opacity: 1;
  transform: translateX(0);
}

.zoom-animado {
  opacity: 0;
  transform: scale(0.95);
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.zoom-animado.visivel {
  opacity: 1;
  transform: scale(1);
}
