/*--------------------------------------------------------------
LANDING PAGE PROFESIONAL - ESTILOS MODERNOS
--------------------------------------------------------------*/

/* BENEFITS SECTION */
.landing-benefits {
  background: #f8f9fa;
  padding: 4rem 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #e5e5e5;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #004794;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: #004794;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.benefit-text {
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

/* FEATURES SECTION */
.landing-features {
  background: #ffffff;
  padding: 5rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #e5e5e5;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #004794;
}

.feature-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.feature-content {
  padding: 2rem;
}

.feature-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.feature-description {
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

/* CTA SECTION */
.landing-cta {
  background: linear-gradient(135deg, #004794 0%, #003366 100%);
  padding: 5rem 0;
  text-align: center;
  color: #ffffff;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.cta-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.cta-button-primary {
  background: #ffffff;
  color: #004794;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.0625rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  border: 2px solid #ffffff;
  min-width: 200px;
  text-align: center;
}

.cta-button-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary {
  background: transparent;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.0625rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.5);
  min-width: 200px;
  text-align: center;
}

.cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

/* COVERAGE SECTION */
.landing-coverage {
  background: #f8f9fa;
  padding: 5rem 0;
  text-align: center;
}

.coverage-image-wrapper {
  max-width: 800px;
  margin: 2rem auto 0;
}

.coverage-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* FINAL CTA SECTION */
.landing-final-cta {
  background: #1a1a1a;
  padding: 5rem 0;
  text-align: center;
  color: #ffffff;
}

.final-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.final-cta-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.final-cta-button {
  background: #004794;
  color: #ffffff;
  padding: 1.125rem 2.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  border: 2px solid #004794;
  min-width: 250px;
  text-align: center;
}

.final-cta-button:hover {
  background: #003670;
  border-color: #003670;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 71, 148, 0.4);
}

.final-cta-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin: 0;
}

/* RESPONSIVE */
@media screen and (min-width: 48rem) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .cta-title,
  .final-cta-title {
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 64rem) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
  
  .landing-benefits {
    padding: 5rem 0;
  }
  
  .landing-features {
    padding: 6rem 0;
  }
  
  .landing-cta {
    padding: 6rem 0;
  }
  
  .landing-coverage {
    padding: 6rem 0;
  }
  
  .landing-final-cta {
    padding: 6rem 0;
  }
}

@media screen and (max-width: 47.9375rem) {
  .landing-benefits,
  .landing-features,
  .landing-cta,
  .landing-coverage,
  .landing-final-cta {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
  
  .cta-title,
  .final-cta-title {
    font-size: 1.75rem;
  }
  
  .benefit-card,
  .feature-content {
    padding: 1.5rem;
  }
}
