.auditorias-section {
    background-image: url('/img/auditar2.jpg');
    background-size: cover;
    background-position: center;
    color: #000;
    padding: 50px 20px;
    display: flex;
    align-items: center;
    min-height: 50vh;
    border: 1px solid #3498db;
    border-radius: 10px;
    margin-top: 40px;
  }
  
  .auditorias-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .auditorias-title h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
  }
  
  
  .auditorias-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .auditorias-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid white;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .auditorias-btn:hover {
    background-color: white;
    color: black;
  }
  .advantages-section {
    text-align: center;
    background-color: #f0f8ff;
    padding: 40px 20px;
  }
  
  .advantages-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #003366;
  }
  
  .advantages-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .advantage-item {
    flex: 1 1 200px;
    max-width: 300px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .advantage-item i {
    font-size: 40px;
    color: #ffa500;
    margin-bottom: 10px;
  }
  
  .advantage-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #003366;
  }
  
  .advantage-item p {
    font-size: 14px;
    color: #555;
  }
  
  .btn-primary {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
  }
  
  .btn-primary:hover {
    background-color: #3498db;
  }
  .related-audits-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: left;
}

.related-audits-section h2 {
  font-size: 24px;
  color: #003366;
  margin-bottom: 20px;
}

.audits-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.audit-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 10px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  color: #003366;
  flex: 1;
  text-align: center;
}

.audit-item:hover {
  background-color: #e0f7fa;
  border-color: #00acc1;
}

.audit-item:focus {
  background-color: #e0f7fa;
  border-color: #00acc1;
  outline: none;
}

.audit-details {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.audit-details h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #003366;
}

.audit-details p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #3498db;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #3498db;
}

.solutions {
  text-align: center;
  padding: 20px;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.card {
  background-color: #efefef;
  color: black;
  border-radius: 8px;
  overflow: hidden;
  width: 250px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: 200px;
}

.card-content {
  padding: 20px;
  text-align: left;
}

.card-content h3 {
  margin-top: 0;
}

.card-content p {
  font-size: 14px;
}

button.tarjetas {
  background-color: white;
  color: #3498db;
  border: none;
  padding: 10px;
  width: 100%;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background-color: #2980b9;
  color: white;
}