/* Reset y estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #f5f5f7;
  color: #1d1d1f;
  overflow-x: hidden;
}

/* Navegación estilo Apple */
.navbar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 40px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2e7d32;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #1d1d1f;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #2e7d32;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #2e7d32;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero section estilo Apple */
.apple-hero {
  padding: 160px 20px 100px;
  text-align: center;
  background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.apple-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(46, 125, 50, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(76, 175, 80, 0.05) 0%,
      transparent 50%
    );
  z-index: 0;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.hero-title h1 {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  background: var(--white);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Outfit", sans-serif;
}

.hero-title p {
  font-size: 1.4rem;
  color: #f8f8f8ff;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2e7d32;
  margin-bottom: 8px;
  font-family: "Outfit", sans-serif;
}

.stat-label {
  font-size: 0.9rem;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Sección de Frutos estilo Apple */
.apple-section {
  padding: 120px 20px;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #1d1d1f, #2e7d32);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Outfit", sans-serif;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #86868b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.apple-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.apple-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 20px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

.apple-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.apple-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 40px 80px rgba(46, 125, 50, 0.08);
}

.apple-img-container {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.apple-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.apple-item:hover .apple-img {
  transform: scale(1.1);
}

.apple-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.95) 40%);
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.apple-item:hover .apple-overlay {
  transform: translateY(0);
}

.apple-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  color: white;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.3);
}

.apple-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1d1d1f;
  font-family: "Outfit", sans-serif;
}

.apple-description {
  font-size: 1.1rem;
  color: #515154;
  line-height: 1.6;
  margin-bottom: 20px;
}

.apple-link {
  display: inline-flex;
  align-items: center;
  color: #2e7d32;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  gap: 8px;
  transition: gap 0.3s ease;
}

.apple-link:hover {
  gap: 12px;
}

/* Sección de Precios estilo Apple */
.pricing-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 60px auto 0;
}

.pricing-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.pricing-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 40px 80px rgba(46, 125, 50, 0.08);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2e7d32, #4caf50);
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.pricing-badge {
  background: #2e7d32;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 30px;
  min-height: 70px;
  font-family: "Outfit", sans-serif;
}

.pricing-price {
  text-align: center;
  margin: 30px 0;
}

.pricing-price h2 {
  color: #2e7d32;
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0;
  font-family: "Outfit", sans-serif;
}

.pricing-price p {
  color: #86868b;
  font-size: 0.95rem;
  margin-top: 8px;
}

/* Sección de Productos estilo Apple */
.products-section {
  padding: 120px 20px;
  background: #f5f5f7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.product-card-apple {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}

.product-card-apple.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card-apple:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 40px 80px rgba(46, 125, 50, 0.08);
}

.product-img-apple {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.product-img-apple::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
}

.product-category-apple {
  position: absolute;
  top: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.9);
  color: #2e7d32;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-info-apple {
  padding: 40px;
}

.product-title-apple {
  font-size: 2rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 20px;
  font-family: "Outfit", sans-serif;
}

.product-desc-apple {
  font-size: 1.1rem;
  color: #515154;
  line-height: 1.6;
  margin-bottom: 30px;
}

.product-specs-apple {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.spec-item-apple {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.spec-item-apple:hover {
  background: #e8f5e9;
  transform: translateY(-2px);
}

.spec-label-apple {
  display: block;
  font-size: 0.9rem;
  color: #86868b;
  margin-bottom: 8px;
  font-weight: 600;
}

.spec-value-apple {
  display: block;
  font-size: 1.1rem;
  color: #2e7d32;
  font-weight: 700;
}

/* Quality Banner estilo Apple */
.quality-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quality-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1b4332;
}

.quality-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
}

.quality-container.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

.quality-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 30px;
  font-family: "Outfit", sans-serif;
}

.quality-description {
  font-size: 1.3rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* Animaciones */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .apple-grid,
  .products-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title h1 {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero-title h1 {
    font-size: 2.5rem;
  }

  .hero-title p {
    font-size: 1.1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .apple-img-container {
    height: 400px;
  }

  .apple-title {
    font-size: 1.8rem;
  }

  .apple-description {
    font-size: 1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-price h2 {
    font-size: 2.8rem;
  }

  .product-specs-apple {
    grid-template-columns: 1fr;
  }

  .quality-title {
    font-size: 2.2rem;
  }

  .quality-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .nav-links {
    display: none;
  }

  .hero-title h1 {
    font-size: 2rem;
  }

  .apple-img-container {
    height: 300px;
  }

  .apple-overlay {
    padding: 25px;
  }

  .product-info-apple {
    padding: 25px;
  }

  .product-title-apple {
    font-size: 1.6rem;
  }
}
