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

body {
  font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
  color: #000;
}

/* ===== HEADER ===== */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 60px;
}

.navigation {
  display: flex;
  gap: 24px;
}

.navigation a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
}

.navigation a:hover {
  color: #b17ebb;
}

/* HERO */
.hero-section {
  background-image: url("./img/pelic.jpg");
  background-size: cover;
  background-position: center;
  font-family: "Josefin Sans", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 75px;
  letter-spacing: 0;
  line-height: normal;
}

.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(240,199,239,0.1),
    rgba(177,126,187,0.6)
  );
  padding: 120px 24px;
  text-align: center;
}


.objective-section {
  color: #000000;
  padding: 60px 24px;
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
}


/* CAROUSEL */
.carousel {
  position: relative;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.carousel-track img {
  min-width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Botones */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 6px 10px;
  cursor: pointer;
}

.carousel-btn.prev {
  left: 5px;
}

.carousel-btn.next {
  right: 5px;
}



/* PRODUCTOS */
.products-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 15px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.product-item {
  text-align: center; 
}

.product-image {
  width: 100%;
  height: 220px;          /* ✅ medida estándar */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;    /* ✅ NO se deforman */
}

/* OBJETIVO */
.objective-section {
  background: linear-gradient(
    180deg,
    rgba(240,199,239,0.1),
    rgba(177,126,187,0.6)
  );
  color: #000000;
  padding: 60px 24px;
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
}

/* ===== FOOTER ===== */
.footer {
  background: #000;
  color: #fff;
  padding: 60px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  height: 120px;
}

/* MOBILE */
@media (max-width: 768px) {
  .navigation {
    flex-direction: column;
    align-items: flex-end;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .product-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .product-image {
    height: 150px;
  }
}