body {
  background-image: url(https://images.pexels.com/photos/15326105/pexels-photo-15326105/free-photo-of-campo-de-girasoles-al-atardecer.jpeg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  font-family: 'Poppins', sans-serif;
  color: #333;
  min-height: 100vh;
  margin: 0;
}

/* Contenedor principal */
.container {
  max-width: 1200px;
}

/* Tarjetas uniformes */
.uniform-box {
  height: 100%;
  min-height: 320px;
  background: white;
  border-radius: 16px;
  border: 2px solid #e8d9b9;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.uniform-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #8a6a1f;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.uniform-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: #d4b77a;
}

.uniform-box:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.uniform-box .card-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: #4A7C59;
  margin-bottom: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.uniform-box .card-title i {
  color: #8a6a1f;
  font-size: 1.3rem;
}

.uniform-box .card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #5a5a5a;
  margin: 0;
}

/* Imágenes */
.uniform-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid #e8d9b9;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.uniform-img:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #d4b77a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Footer y espaciado */
footer {
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .uniform-box, .uniform-img {
    height: auto;
    min-height: 280px;
  }

  .uniform-box {
    padding: 25px 20px;
  }

  .card-title {
    font-size: 1.35rem;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 70px;
  }

  .container {
    padding: 0 15px;
  }

  .uniform-box, .uniform-img {
    min-height: 250px;
  }
}