.servicios-main {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}

.servicios-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

.servicios-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 60, 0.45);
  z-index: 1;
}

.servicios-content {
  position: relative;
  z-index: 2;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 2.5rem;
}

.servicios-botones {
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  justify-content: center;
}

.servicio-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
  background-color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.55rem 1rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #1a2e6e;
  text-transform: uppercase;
  transition: background-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.servicio-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #1a2e6e;
}

.servicio-btn:hover {
  background-color: #e8e8e8;
  transform: translateY(-2px);
}

.servicio-btn.activo {
  background-color: #f5c800;
  color: #1a2e6e;
}

.servicio-btn.activo svg {
  color: #1a2e6e;
}

.detalle-panel {
  display: none;
  margin-top: 1.2rem;
  width: 100%;
  max-width: 420px;
  animation: fadeDown 0.25s ease;
}

.detalle-panel.visible {
  display: block;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.detalle-inner {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.detalle-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
}

.detalle-input {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a2e6e;
  background: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.6rem 0.9rem;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 0.05em;
}

.detalle-input::placeholder {
  color: #aab0c8;
  font-weight: 500;
}

.detalle-continuar {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a2e6e;
  background: #f5c800;
  border: none;
  border-radius: 4px;
  padding: 0.55rem 1.2rem;
  cursor: pointer;
  align-self: flex-end;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.detalle-continuar:hover {
  background: #e0b400;
  transform: translateY(-1px);
}

.no-disponible {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  padding: 0.5rem 0;
}

.detalle-recargas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.operadora-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a2e6e;
  background: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.7rem 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.operadora-btn:hover {
  background: #e8e8e8;
  transform: translateY(-2px);
}

.operadora-btn.activo {
  background: #f5c800;
  color: #1a2e6e;
}

.continuar-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.msg-monto {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: transparent;
  transition: color 0.2s ease;
}

.msg-monto.msg-error {
  color: #ff6b6b;
}

.monto-manual {
  flex-direction: column;
  gap: 0.5rem;
  animation: fadeDown 0.25s ease;
}

.detalle-continuar:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.recarga-operadora-titulo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

@media (max-width: 768px) {
  .servicios-content {
    padding: 1.5rem 1rem;
  }

  .servicios-botones {
    flex-wrap: wrap;
    justify-content: center;
  }

  .detalle-panel {
    max-width: 100%;
  }
}
