/* General */
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  margin: 0;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 3rem 0;
}

/* Hero */
.hero-section {
  background: linear-gradient(to right, #00c8ff, #007f99);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}

.hero-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.3rem;
}

/* Intro */
.intro-section {
  text-align: center;
  background-color: #f8f9fa;
  padding: 4rem 2rem;
}

.intro-section h2 {
  font-size: 2rem;
  color: #00c8ff;
  margin-bottom: 1rem;
}

/* Services */
.services-section {
  background-color: #fff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #f4f4f4;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00c8ff;
}

/* CTA */
.cta-urgente {
  background-color: #00c8ff;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.cta-urgente h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.btn-urgente {
  display: inline-block;
  margin-top: 1.5rem;
  background: white;
  color: #00c8ff;
  font-weight: bold;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-urgente:hover {
  background: #e6faff;
}


/* Nueva Hero */
.intro-section {
  background: linear-gradient(135deg, #f8f9fa, #e9f7fc);
  padding: 5rem 2rem;
  border-top: 1px solid #00c8ff10;
  border-bottom: 1px solid #00c8ff10;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-title {
  font-size: 2.5rem;
  color: #0b2e4e;
  margin-bottom: 1.5rem;
  font-weight: 800;
  position: relative;
}

.intro-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #00c8ff;
  display: block;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
}

.intro-text strong {
  color: #00c8ff;
  font-weight: 600;
}

.intro-text em {
  font-style: italic;
  color: #0b2e4e;
}


/* Workflow */
.workflow-section {
  background-color: #f0f0f0;
  padding: 4rem 2rem;
}

.workflow-steps {
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
  line-height: 2rem;
}

.workflow-steps li {
  margin-bottom: 1rem;
}

/* Coverage */
.coverage-section {
  background: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

.coverage-section h2 {
  color: #00c8ff;
}

/* Cierre urgente */
.cta-urgente {
  background-color: #00c8ff;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.btn-urgente {
  background: white;
  color: #00c8ff;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1.5rem;
  transition: 0.3s;
}

.btn-urgente:hover {
  background: #e6faff;
}