.box-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
}
.advertisement-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-bottom: 20px; /* Espaço entre a imagem e os cards */
}

.advertisement-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Remover completamente a seção da imagem em telas maiores que 768px */
@media (min-width: 768px) {
  .advertisement-section {
    display: none; /* Remove a div e evita qualquer espaço reservado */
  }
}


/* Esconde a imagem em telas maiores que 768px */
@media (min-width: 768px) {
  .advertisement-section {
    display: none;
  }
}

/* Estilo padrão para a imagem: visível */
.advertisement-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.advertisement-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Ocultar a imagem em telas maiores que 768px */
@media (min-width: 768px) {
  .advertisement-section img {
    display: none;
  }
}

    



/* Feature Cards */
.feature-cards {
  margin-top: 2rem;
}

.feature-item {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-content h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: bold;
  font-size: 18px;
  color: #030A15;
}

.feature-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #454545;
  line-height: 1.6;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .icon-box {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .feature-content h5 {
    font-size: 16px;
  }

  .feature-content p {
    font-size: 13px;
  }
}
/* Box Container */
.box-container {
  max-width: 100%; /* Largura máxima da box */
  margin: 0 auto; /* Centraliza a box */
  padding: 20px; /* Espaçamento interno */
  border: 1px solid #ddd; /* Bordas da box */
  border-radius: 10px; /* Cantos arredondados */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
  background-color: #ffffff; /* Cor de fundo */
}

/* Advertisement Section */
.advertisement-section {
  width: 100%;
  height: auto;
  max-height: 300px;
  overflow: hidden;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advertisement-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

