/* Estilos base para la página de reparación de dispositivos */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f4f6fb;
  margin: 0;
  padding: 0;
  color: #222;
}

header {
  background: linear-gradient(90deg, #005bea 0%, #3ec6e0 100%);
  color: #fff;
  padding: 2rem 0 1rem 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  letter-spacing: 1px;
}

header p {
  margin: 0.5rem 0 0 0;
  font-size: 1.2rem;
}

.main-content {
  max-width: 900px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 2rem;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.service-card {
  flex: 1 1 220px;
  background: #f7faff;
  border-radius: 8px;
  padding: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-align: center;
  transition: transform 0.2s;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}

.service-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 0.7rem;
}

.service-card h3 {
  margin: 0.5rem 0 0.3rem 0;
  font-size: 1.1rem;
}

form {
  background: #f7faff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  max-width: 600px;
  margin: 0 auto;
}

form label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

form input, form select, form textarea {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1.2rem;
  border: 1px solid #cfd8dc;
  border-radius: 6px;
  font-size: 1rem;
  background: #fff;
  transition: border 0.2s;
}

form input:focus, form select:focus, form textarea:focus {
  border-color: #3ec6e0;
  outline: none;
}

form button {
  background: linear-gradient(90deg, #005bea 0%, #3ec6e0 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

form button:hover {
  background: linear-gradient(90deg, #3ec6e0 0%, #005bea 100%);
}

.ver-mas-btn {
    margin-top: 1rem;
    background-color: #005bea;
    color: #fff;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s;
}
.ver-mas-btn:hover {
    background-color: #003e8a;
}

.btn-home {
    background: #005bea;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    margin-left: 1rem;
    margin-top: 1rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.btn-home:hover {
    background: #003e8a;
}

@media (max-width: 700px) {
  .main-content, form {
    padding: 1rem;
  }
  .services {
    flex-direction: column;
    gap: 1rem;
  }
}
