/* ---------- SECCIÓN CARNÉS SIN FONDO ---------- */
.carnes-section {
  position: relative;
  padding: 100px 20px;
  color: #000;
  text-align: center;
  overflow: hidden;
  background: none !important; /* sin color ni imagen */
}

/* ELIMINAR COMPLETAMENTE FONDOS Y CAPAS */
.carnes-section::before,
.carnes-section::after {
  content: none !important;
  background: none !important;
  background-image: none !important;
  display: none !important;
}

/* ---------- CONTENIDO ---------- */
.carnes-header {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto 50px;
  background: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  padding: 40px 20px;
  border-radius: 20px;
  animation: fadeIn 1.5s ease-in-out;
}

.carnes-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
  letter-spacing: 1px;
}

.carnes-header p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

/* ---------- TARJETAS ---------- */
.carnes-wrapper {
  margin-top: -100px;
  position: relative;
  z-index: 2;
}

.carnes-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.carne-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 20px;
  width: 360px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carne-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.carne-card h3 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 12px;
}

.carne-img-wrap {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.carne-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.carne-desc {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 16px;
}

.btn-cotizar {
  display: inline-block;
  background: #000000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
  transition: background 0.3s ease;
}

.btn-cotizar:hover {
  background: #000000;
}

/* ---------- ANIMACIÓN ---------- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 800px) {
  .carnes-grid {
    flex-direction: column;
    align-items: center;
  }

  .carne-card {
    width: 90%;
  }

  .carnes-header h2 {
    font-size: 1.7rem;
  }
}