/* =========================
   PHONE CTA BASE
========================= */

.phones-cta {
  background: #0f172a;
  color: white;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

/* DECORACIÓN SUAVE */
.phones-cta::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

/* =========================
   WRAPPER (SPLIT)
========================= */

.phones-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* =========================
   IZQUIERDA (LLAMADAS)
========================= */

.phones-left {
  flex: 1;
  min-width: 260px;
}

.phones-subtitle {
  font-size: 16px;
  margin-bottom: 12px;
  opacity: 0.8;
}

/* LISTA */
.phones-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.phones-list li {
  margin-bottom: 12px;
}

/* NÚMEROS */
.phone-item {
  font-size: 30px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  display: inline-block;
  transition: 0.2s ease;
}

/* Hover */
.phone-item:hover {
  color: #60a5fa;
  transform: translateX(6px);
}

/* =========================
   DERECHA (INFO + WHATS)
========================= */

.phones-right {
  flex: 1;
  min-width: 260px;
}

.phones-title {
  font-size: 26px;
  margin-bottom: 10px;
}

.phones-desc {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}

/* =========================
   WHATSAPP
========================= */

.whatsapp-list {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* BOTONES */
.whatsapp-item {
  background: #25d366;
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  transition: 0.2s ease;
}

/* Hover */
.whatsapp-item:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

/* TABLET */
@media (max-width: 1024px) {
  .phones-wrapper {
    gap: 30px;
  }

  .phone-item {
    font-size: 28px;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .phones-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .phones-left,
  .phones-right {
    width: 100%;
  }

  .phone-item {
    font-size: 24px;
  }

  .phones-title {
    font-size: 22px;
  }

  .phones-desc {
    font-size: 14px;
  }

  .whatsapp-list {
    justify-content: center;
  }

  .whatsapp-item {
    width: 100%;
    justify-content: center;
  }
}