/* ===============================================
    Estilos para Call to Action
    - Diseño centrado con fondo de imagen
    - Botones destacados
    - Responsive
------------------------*/

.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section .ttm-bg-layer {
  opacity: 0.2;
  background-size: cover;
  background-position: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #004ECC 0%, #0066FF 100%);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

/* Icono */
.cta-icon {
  display: inline-block;
}

.cta-icon i {
  font-size: 80px;
  color: white;
  opacity: 0.9;
}

/* Título */
.cta-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Descripción */
.cta-description {
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.95;
}

/* Botones */
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-buttons .ttm-btn {
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-buttons .ttm-btn i {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 991px) {
  .cta-section {
    padding: 80px 0;
  }

  .cta-title {
    font-size: 36px;
  }

  .cta-description {
    font-size: 16px;
  }

  .cta-icon i {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .cta-icon i {
    font-size: 50px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .ttm-btn {
    width: 100%;
    justify-content: center;
    margin-left: 0 !important;
  }
}

@media (max-width: 576px) {
  .cta-section {
    padding: 50px 0;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-description {
    font-size: 14px;
  }

  .cta-buttons .ttm-btn {
    padding: 12px 25px;
    font-size: 15px;
  }
}