/* HEADER SOLO INTERNAS */
.jr-header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
}

.jr-nav a {
  color: #1f2f3f;
}

/* QUIENES SOMOS */
.about-historia {
  padding: 100px 20px;
  background: #fff;
}

/* VENTAJAS */
.ventajas {
  padding: 100px 20px;
}

.ventajas {
  padding: 100px 20px;
  text-align: center;
  background: #fff;
}

.ventajas-title {
  font-size: 32px;
  color: #1f2f3f;
  letter-spacing: 2px;
}

.linea {
  width: 200px;
  height: 4px;
  background: #ef4444;
  margin: 20px auto 60px;
}

/* GRID */
.ventajas-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
}

/* ITEM */
.ventaja i {
  font-size: 32px;
  color: #1f2f3f;
  margin-bottom: 15px;
}

.ventaja h4 {
  color: #ef4444;
  margin-bottom: 10px;
}

.ventaja p {
  color: #64748b;
  font-size: 14px;
}

.services-hero {
  position: relative;
  height: 90vh;
  background: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1600&q=80') center/cover;
  display: flex;
  align-items: center;
}

.services-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.65);
}

.services-hero .container {
  position: relative;
  color: #fff;
      margin-left: 400px;
    margin-top: 100px;
}

.services-hero h1 {
  font-size: 48px;
}

.services-intro {
  padding: 60px 20px;
  text-align: center;
  background: #f8fafc;
  color: #64748b;
  font-size: 18px;
}

.services-section {
  padding: 120px 20px;
  background: #fff;
}

/* BLOQUES */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}

/* INVERTIDO */
.service-block.reverse {
  direction: rtl;
}

.service-block.reverse .service-content {
  direction: ltr;
}

/* IMAGEN */
.service-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.2);
  transition: 0.4s;
}

.service-block:hover img {
  transform: scale(1.05);
}

/* TEXTO */
.service-content span {
  color: #ef4444;
  font-weight: 600;
}

.service-content h2 {
  font-size: 34px;
  margin: 10px 0;
}

.service-content p {
  color: #64748b;
  margin-bottom: 20px;
}

/* LISTA */
.service-content ul {
  list-style: none;
  padding: 0;
}

.service-content li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.service-content li::before {
  content: "✔";
  color: #ef4444;
  position: absolute;
  left: 0;
}

/* BOTON */
.btn-servicio {
  display: inline-block;
  margin-top: 20px;
  background: #ef4444;
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-servicio:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(239,68,68,0.4);
}