/* ===== Sección de lanzamiento ===== */
.cta-section {
  padding: 80px 10%;
  background: linear-gradient(135deg, #f0f8ff 0%, #e0f7f4 100%);
  position: relative;
  overflow: hidden;
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
    max-width: 1298px;
    place-self: anchor-center
}

.cta-content {
  flex: 1 1 500px;
}

/* ===== Título ===== */
.cta-title {
  font-size: 2.75rem;      /* tamaño importante, jerarquía clara */
  font-weight: 900;         /* más peso visual */
  margin-bottom: 25px;
  color: #1a1a1a;
  line-height: 0.9;        /* compacto para títulos grandes */
  background: linear-gradient(90deg, #E67E22, #E04E47);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== Texto de párrafo ===== */
.cta-text {
  font-size: 1.125rem;      /* tamaño legible */
  font-weight: 400;          /* peso normal, fácil lectura */
  line-height: 1.75;         /* altura de línea cómoda */
  color: #333;
  margin-bottom: 20px;
}

/* ===== Botón ===== */
.cta-button {
  display: inline-block;
  padding: 14px 32px;
  background-color: #E67E22;
  color: #fff;
  font-weight: 700;          /* peso más marcado */
  font-size: 1rem;
  text-decoration: none;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.12);
}

/* ===== Imagen ===== */
.cta-image {
  
  flex: 1 1 400px;
  display: flex;
  align-items: center;
}

.cta-image img {
 max-width: 450px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: transform 0.5s;
}

.cta-image img:hover {
  transform: scale(1.05);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .cta-image {
    justify-content: center;
}

  .cta-container {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .cta-section {
    padding: 40px 10%;
}
  .cta-content {
    text-align: center;
  }
}


