* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', bold;
}

body {
  background-color: #f6f8fb;
  color: #333;
  line-height: 1.6;
}

.info-section {
  padding: 80px 20px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

h1 {
  font-size: 36px;
  margin-bottom: 24px;
  color: #FFC1C;
}

h2 {
  font-size: 28px;
  margin: 60px 0 32px;
  color: #FFA701;
}

.intro-text {
  font-size: 18px;
  margin-bottom: 16px;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #f0f4fa;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.process-item span {
  min-width: 44px;
  height: 44px;
  background: #FFA701;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-item h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #FFC1C;
}

.process-item p {
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 40px 24px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }
}

.hero-image {
  height: 550px;
  background-image: url("../img/procesamiento-datos-hero.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1000px;
  padding: 0 24px;
  margin: 0 auto;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 18px;
  max-width: 600px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-image {
    height: 380px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 16px;
  }
}


