/* =========================
   PLANTA FÍSICA
========================= */
.planta-fisica {
  max-width: 1300px;
  margin: 60px auto;
  padding: 80px 20px;
  background: #f9fafc;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.planta-fisica h3 {
  text-align: center;
  font-size: 1.8rem;
  color: #004aad;
  margin-bottom: 40px;
  font-weight: bold;
}

/* =========================
   GRID PRINCIPAL
========================= */
.planta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* =========================
   TARJETA / TABLA
========================= */
.planta-info {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #007bff;
}

.planta-info h4 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: #003366;
}

.tabla-planta {
  width: 100%;
  border-collapse: collapse;
}

.tabla-planta th {
  background-color: #007bff;
  color: white;
  text-align: left;
  padding: 10px;
}

.tabla-planta td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.tabla-planta tr:hover {
  background-color: #f1f5ff;
}

/* =========================
   IMAGEN
========================= */
.planta-img img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.planta-img img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 900px) {
  .planta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .planta-img img {
    max-width: 90%;
    margin: 0 auto;
  }
}
