/* ======== Single Section Simple ======== */
.single-section-simple {
  padding: 80px 20px;
  color: #fff;
  text-align: center;

  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.single-section-simple .container {
  max-width: 1100px;
  margin: 0 auto;
}
.single-section-container {
  background-color: var(--color1);
  padding: 50px !important;
  border-radius: 20px;
}

.single-section-subtitle {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.9;
}

.single-section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
}
.single-section-simple h2 {
  color: #fff;
}
.single-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
  line-height: 1.6;
}
.single-section-grid::before {
  content: "";
  position: absolute;
  height: 45%;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.3); /* línea en medio */
  transform: translateX(-50%);
}
.single-section-col {
  font-size: 1rem;
}
.single-section-col p {
  color: #fff;
}
.single-section-btn {
  text-align: center;
}

.single-section-btn .btn-white {
  background: #fff;
  color: #2b4fad;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.single-section-btn .btn-white:hover {
  background: #f0f0f0;
}
/* ======== Background SVG ======== */
.single-section-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.15;
}

.single-section-bg svg,
.single-section-bg img {
  width: 100%;
  height: auto;
}

/* ======== Responsive ======== */
@media (max-width: 768px) {
  .single-section-container {
    padding: 12px !important;
  }
  .single-section-grid {
    grid-template-columns: 1fr;
  }
  .single-section-grid::before {
    display: none; /* quita la línea en móvil */
  }
  .single-section-simple {
    padding: 80px 0px;
  }
}
/* ======== Responsive ======== */
@media (max-width: 768px) {
  .single-section-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
