/*
// ===================================
// Autor: Gabriel Daniel Manea
// Fecha: 05 de marzo de 2025
// Autor de la última modificación: Gabriel Daniel Manea
// Última fecha de modificación: 26 de Abril de 2025
// Descripción: Estilos para la página principal/índice
// ===================================
*/

.hero-section {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--color-darkest) 0%, var(--color-darker) 100%);
  color: var(--color-light);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--color-light-gray);
}

.hero-lead {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--color-gray);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.2;
  z-index: 1;
}

.info-section {
  padding: 6rem 0;
  background-color: var(--color-light);
}

.info-card {
  background-color: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
}

.features-section {
  padding: 6rem 0;
  background-color: var(--color-light-gray);
}

.feature-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
  position: relative;
  padding-bottom: 0.5rem;
}

.feature-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-darker-gray);
}

/* Responsive (completo) */
@media (max-width: 992px) {
  .feature-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .feature-card {
    margin-bottom: 1.5rem;
  }

  .features-section {
    padding: 4rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}
