/* ============================================================
   SEÇÃO: Assistência Técnica para Celulares
   Arquivo: style/celular.css
   ============================================================ */

.celular-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.celular-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,188,212,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.celular-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0,105,217,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.celular-section .section-title {
  color: #fff;
}

.celular-section .section-title:after {
  background: linear-gradient(135deg, #0069d9 0%, #00bcd4 100%);
}

.celular-section .section-subtitle {
  color: #cbd5e1;
}

/* Card principal */
.celular-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 35px 30px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.celular-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #0069d9 0%, #00bcd4 100%);
}

.celular-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 188, 212, 0.4);
}

.celular-card .celular-icon {
  font-size: 48px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #0069d9 0%, #00bcd4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.celular-card h5 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.celular-card p {
  color: #cbd5e1;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Lista de serviços rápidos */
.celular-services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.celular-services-list li {
  background: rgba(0, 188, 212, 0.12);
  color: #67e8f9;
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.celular-services-list li:hover {
  background: rgba(0, 188, 212, 0.25);
  transform: translateY(-2px);
}

/* Botões */
.celular-btn {
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: none;
}

.celular-btn-primary {
  background: linear-gradient(135deg, #0069d9 0%, #00bcd4 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 105, 217, 0.3);
}

.celular-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 105, 217, 0.45);
  color: #fff;
}

.celular-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.celular-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00bcd4;
  color: #67e8f9;
  transform: translateY(-3px);
}

.celular-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

/* Selo/check */
.celular-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.celular-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  color: #e2e8f0;
  font-size: 0.95rem;
}

.celular-features i {
  color: #10b981;
  margin-right: 10px;
  font-size: 1.1rem;
  margin-top: 2px;
}

/* Responsivo */
@media (max-width: 768px) {
  .celular-card {
    padding: 25px 20px;
  }
  .celular-card .celular-icon {
    font-size: 40px;
  }
  .celular-btn {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
  .celular-btn-group {
    flex-direction: column;
  }
  .celular-btn-group .celular-btn {
    width: 100%;
    justify-content: center;
  }
}