* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

#empresas-section .container {
  max-width: 1200px; 
  margin: auto;
  padding: 0 15px; 
}

#empresas-section .row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px; 
}

#empresas-section .col-md-4 {
  padding: 15px; 
  width: 100%; 
  max-width: 33.3333%;
  box-sizing: border-box; 
}

.card {
  background-color: #b12f00; 
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s; 
}

.card:hover {
  transform: scale(1.05); 
}

.card .image-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.content {
  padding: 20px;
}

.content h2 {
  color: #000000; 
  margin-bottom: 10px; 
}

.content p {
  color: #000000; 
  font-size: 16px; 
}

@media (max-width: 768px) {
  #empresas-section .col-md-4 {
    max-width: 50%; 
  }
}

@media (max-width: 576px) {
  #empresas-section .col-md-4 {
    max-width: 100%; 
  }
}
.mastergas-title {
  text-align: center; 
  color: #FF5733;
  font-size: 48px; 
  margin-bottom: 30pX;
  font-weight: bold;
  padding: 0 20px; 
  letter-spacing: 2px; 
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); 
}

@media (max-width: 768px) {
  .mastergas-title {
    font-size: 36px; 
    letter-spacing: 1px; 
  }
}

@media (max-width: 576px) {
  .mastergas-title {
    font-size: 28px; 
  }
}
